I find the surefire-report plug-in very unsuitable to my working style. I clean the project all the time and I don't want to spend 5 min to rebuild the whole site every time I want to look at the test report in my browser. If I type mvn surefire-report:report-only, the generated report is too ugly and barely readable. What I'm looking for is something like ant's JUnitReport task. Is there one available out there already?
|
Indeed, generating the whole site at each build is clearly not an option. But the problem is that
Update: My initial idea was to run the Maven AntRun plugin "on demand" to generate the reports... but that's not what I posted, I bound it to the
I think that Option #1 is the best option, you don't necessarily want to generate the reports (especially when the test passes) and generate them systematically may slow down the build on the long term. I'd generate them "on demand". |
|||||||
|
|
Thanks for Pascal, I've found an improved solution to do what I want to do:
This version uses a newer version of ant and best of all. However, I still haven't found a way to generate a test report when tests fail. How should I do that? |
||||
|
|
|
You can set -Dmaven.test.failure.ignore=true to generate the test report when tests fail. |
|||
|
|