Re: running integration tests with maven

2014-05-16 Thread Anders Hammar
You need to add/bind the maven-failsafe-plugin to your build: http://maven.apache.org/surefire/maven-failsafe-plugin/usage.html You also need to adapt the naming of your test files: http://maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion.html /Anders On Thu, May 8,

Re: running integration tests with maven

2014-05-16 Thread Glenn Brown
http://docs.codehaus.org/plugins/servlet/mobile#content/view/63286 On May 15, 2014 10:14 PM, Brendan Miller catph...@catphive.net wrote: I currently have some testng integration tests in a maven project. This is causing problems because the tests get picked up and run during the test phase,

running integration tests with maven

2014-05-15 Thread Brendan Miller
I currently have some testng integration tests in a maven project. This is causing problems because the tests get picked up and run during the test phase, rather than the integration-test phase. How do I cause tests to be run in the integration test phase rather than test? All of my tests in this