How do you execute parallel tests in thucydides ? I've tried setting Dthucydides.batch.count ( and Dthucydides.batch.size because someone mentioned that count is now size?), Dthucydides.batch.number, putting the tag in the failsafe plugin in the .pom of my project, using the fork options in the maven failsafe plugin, but nothing works. It keeps executing tests one after another.
the mvn plugin i'm using to execute the tests as requested:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.11</version>
<configuration>
<includes>
<include>**/*Test.java</include>
<include>**/Test*.java</include>
<include>**/When*.java</include>
<include>**/*TestSuite.java</include>
</includes>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>