In my project I have surefire as well as failsafe tests.
If I run with mvn clean install -DskipTests
then both kinds of tests are skipped.
If I try to run a single failsafe test using -Dit.test=TestName then first all surefire tests run and then my it test.. but as the surefire tests take a long time this is not good.
I would like to skip the surefire tests in some cases but run the failsafe IT tests.