Re: maven-failsafe-plugin: what is it actually intended for?

2013-11-15 Thread James Green
On 15 November 2013 06:57, Vincent Latombe vincent.lato...@gmail.comwrote: maven-failsafe-plugin implies some specific steps are required *before* (pre-integration-test) and *after* (post-integration-test) the test execution, which allows to do fire up a container then turn it off after the

Re: maven-failsafe-plugin: what is it actually intended for?

2013-11-15 Thread Russell Gold
It appears that there are multiple use cases for failsafe. I tend to use it for slow tests that don’t necessarily need to pass at the moment, but for which I want to know the percentage passing. Accordingly, I bind the integration-test goal but NOT the verify goal. On Nov 15, 2013, at 1:57 AM,

Re: maven-failsafe-plugin: what is it actually intended for?

2013-11-15 Thread Mirko Friedenhagen
Almost same here, Russel. I always execute `mvn test` on my workstation, where these should be executed in less than a minute and let failsafe via `mvn deploy` (which comes after `verify`) in our CI system (for the Jenkins jobConfigHistory-plugin this takes about 10 minutes). I do not use