You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to Maven2 convention we should rename the integration tests from *Test.java to *IT.java This way they are run during the correct phase integration-test. The Failsafe Plugin takes care of that.
We then have the possibility to start up our server mocks during pre-integration-test phase and shut them down again during post-integration-test.
Additionaly these tests are only executed during mvn install or mvn verify. The integration tests are not executed during test phase. This way we can speed up development cycles.
The text was updated successfully, but these errors were encountered:
bmehner
added a commit
to bmehner/coala
that referenced
this issue
Jul 4, 2012
According to Maven2 convention we should rename the integration tests from *Test.java to *IT.java This way they are run during the correct phase
integration-test
. The Failsafe Plugin takes care of that.We then have the possibility to start up our server mocks during
pre-integration-test
phase and shut them down again duringpost-integration-test
.Additionaly these tests are only executed during
mvn install
ormvn verify
. The integration tests are not executed duringtest
phase. This way we can speed up development cycles.The text was updated successfully, but these errors were encountered: