I have a job in Jenkins that is run every night. The tasks executed during this build are: compilation, unit tests, integration tests (which are only JUnit tests which are longer than "real unit tests" to execute), and Sonar quality analysis.
When a test fails, the job is however considered as successfull and thus, no email is sent to notify this failure.
The Maven command used is mvn clean install sonar:sonar. Removing the install goal does not change anything.
What is wrong with that?
Is there a way to get the expected behavior (i.e. having an unstable build when a test failed) with only one Jenkins job, or should I create two jobs, one for the whole "Java part" (compile, unit test and integration tests), and one for the Sonar analysis?
We are using Maven 2.0.9, Java 1.6, Sonar 2.8, Jenkins 1.413.
mvn -U -up -e clean install -Dsonar.branch=XXX --settings C:\xxx\jenkins-setting.xml– romaintaz Jun 21 '11 at 9:28-Dmaven.test.failure.ignore=false), when there is a test failure, the build stops, and I don't want that, as even with test failures, it should analyse the project... – romaintaz Jun 21 '11 at 14:55