I have a maven project that has an integration test named, say, "BlahITCase". This test is currently failing and in turn causing "mvn install" to fail. Is this the expected behavior? My understanding was that unit test (surefire) failures will cause the build to fail but integration test (using failsafe) failures will not.
I have the following in the build plugins section of my pom:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12.3</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
Commenting out the verify goal seems to give me the desired behavior.