Run tests in random order

This commit is contained in:
Trustin Lee 2012-02-28 10:38:45 -08:00
parent 0d66a36a14
commit 2f6d02da60

12
pom.xml
View File

@ -264,6 +264,18 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<forkMode>never</forkMode>
<excludes>
<exclude>**/Abstract*</exclude>
<exclude>**/TestUtil*</exclude>
</excludes>
<runOrder>random</runOrder>
</configuration>
</plugin>
</plugins>
<!-- Workaround for the 'M2E plugin execution not covered' problem.