0

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.

Mukesh Takhtani
  • 852
  • 5
  • 15
Ahmed Yaslem
  • 123
  • 1
  • 4
  • 20

1 Answers1

0

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>
Community
  • 1
  • 1
Ahmed Yaslem
  • 123
  • 1
  • 4
  • 20