Is there a way to tell only Eclipse
to skip various individual junit
tests (but still run the rest of them)? I am familiar with the @Ignore
annotation, but that is not what I am looking for because that will cause the tests to always be skipped.
I would like the tests to be skipped when ran by eclipse (Run As -> Junit Test
) but ran in any other context, most likely during a maven build.
Any ideas?