When my test passes, XSLT Reports are generated but when it fails the XSLT Reports are not generated. How can i get the the XSLT Reports even when my tests fail.
I am using Maven to run my tests.
When my test passes, XSLT Reports are generated but when it fails the XSLT Reports are not generated. How can i get the the XSLT Reports even when my tests fail.
I am using Maven to run my tests.
Making Maven run all tests, even when some fail
The answer is in the link, in my case i added the following configuration for surefire plugin in my pom.xml
<testFailureIgnore>true</testFailureIgnore>