Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've a maven build in which I use the surefire plugin to run some unit tests, and the failsafe plugin to run some integration tests. I would like a way to run just the failsafe plugin's tests.

It's not a good solution for me to add different profiles or anything in the pom, because it's a multimodule build and I don't want to have to edit every module's pom.

There are skip.tests and maven.test.skip and skipTests which stop all tests, and skipITs, which stops only the failsafe plugin.

So, is there a command-line flag for maven like skipITs, but instead with the functionality of "onlyITs"?

share|improve this question
Did you try maven.test.skip or skipTests? – Thomas Jul 7 '11 at 14:38
yep - see update... – Matthew Gilliard Jul 7 '11 at 14:39
What is the exact reason to just run the integration test? Usually Unit tests are very fast so not a real problem? – khmarbaise Jul 7 '11 at 14:41
@khmarbaise in theory, yes. But in most projects I have worked in, the "unit tests" where actually integration tests with an in-memory db (if you were lucky) – Sean Patrick Floyd Jul 7 '11 at 14:43
1  
@khmarbaise Lots of unit tests. They take a couple of minutes to run and we don't need them to run in this circumstance. Specifically, we run unit tests before building the artifact (of course), but we want to run the ITs in multiple environments. No point re-running the unit tests at this point. – Matthew Gilliard Jul 7 '11 at 14:45
show 1 more comment

2 Answers

up vote 17 down vote accepted

A workaround would be to call:

mvn clean test-compile failsafe:integration-test

Admittedly, this is ugly, but it may solve your problem.


Or (another hack):

mvn clean integration-test -Dtest=SomePatternThatDoesntMatchAnything -DfailIfNoTests=false

Reference:

share|improve this answer
I need to run up to pre-integration-test to deploy the app, unfortunately... – Matthew Gilliard Jul 7 '11 at 14:49
@Matthew ok, I've got another one :-) – Sean Patrick Floyd Jul 7 '11 at 14:51
Yep this does work :) I'll accept it if nobody posts a more beautiful way. – Matthew Gilliard Jul 7 '11 at 15:08

Try running your integration or unit tests in a separate profile. Then you can just enable/disable the profile.

share|improve this answer
I explain in the question why I don't want to do this... – Matthew Gilliard Jul 8 '11 at 7:03
Maybe add parent pom in which you define profile that is running only ITs? all project sub modules could inherit form that pom, so you wouldn't need to change every pom or run modules with special switches (as you can activate profile on property absence). – yoosiba Jul 8 '11 at 9:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.