I have a project with several modules. When all tests pass, Maven test runs them all.

When tests fail in the first module, maven will not continue to the next project. I have testFailureIgnore set to true in Surefire settings, but it doesn't help.

How do I make maven run all tests?

link|improve this question

71% accept rate
What version of the maven-surefire-plugin? – Pascal Thivent Nov 13 '10 at 21:50
@Pascal - SureFire 2.5 – ripper234 Nov 14 '10 at 6:59
feedback

3 Answers

up vote 4 down vote accepted

I just found the "-fae" parameter, which causes Maven to run all tests and not stop on failure.

link|improve this answer
Sadly, this parameter doesn't work when I pass it to TeamCity. – ripper234 Nov 13 '10 at 21:25
feedback

Can you test with surefire 2.6 and either configure surefire with testFailureIgnore=true. Or on the command line:

mvn install -Dmaven.test.failure.ignore=true
link|improve this answer
1  
IIRC this has the effect of the whole build not failing, rather than running all tests and failing in the end. – Ondra Žižka Nov 3 '11 at 18:23
feedback

Try to add the following configuration for surefire plugin in your pom.xml of root project:

<project>
  [...]
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <testFailureIgnore>true</testFailureIgnore>
        </configuration>
      </plugin>
    </plugins>
  </build>
  [...]
</project>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.