Hi all,
I need a way in maven (using the surefire-plugin) to run all tests
in a project ignoring any test failures that might occur. All my tests
are independent of each other and i want all the tests to be run
ignoring any failures that might happen in the middle.
Note:
1. I tried using the configuration
"<testFailureIgnore>true</testFailureIgnore>" for the surefire plugin
and it does not run all the tests.
2. I dont see any consistent behavior as well. Sometimes, it skips all
the tests after 5 failures and sometimes it skips all the tests after
6-7 failures. I am not able to observe any consistent behavior.
Thanks,
Ravi