From 23b1a76d15a6272b503fce5f5c748bfda36563cd Mon Sep 17 00:00:00 2001 From: Oscar Gonzalez Fernandez Date: Thu, 10 Oct 2013 13:15:33 +0200 Subject: [PATCH] Execute tests in alphabetical order Until now the order of the execution of the tests depended on the order of the files returned by the filesystem. This could lead to different test results in different systems for the same codebase. Ideally tests should be completely isolated and not depend on the order of execution whatsoever. Nevertheless, in many tests some data is left behind in the database, affecting the behavior of other tests. With the alphabetical order, these order problems will arise the same in all machines. --- pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pom.xml b/pom.xml index ccea5be21..21bf94303 100644 --- a/pom.xml +++ b/pom.xml @@ -958,6 +958,15 @@ + + org.apache.maven.plugins + maven-surefire-plugin + 2.10 + + alphabetical + + +