I'm looking in a way to only write txt files for unit tests that failed when using maven with surefire. The current behaviour of the surefire plugin is that it writes .txt and .xml file for every test it is running.

A bit like what the surefire-report plugin allows us to do with :

<configuration>
   <showSuccess>false</showSuccess>
</configuration>

Regards,

F

link|improve this question

41% accept rate
I take you have issues with .xml files, no the .txt files? And because of that you only want Surefire to only write .txt files? – jgifford25 Nov 29 '10 at 18:40
Actually, I found a way to get only .txt files. But now, among the txt, I'd like surefire to create txt only when a test failed. So instead of having 390 .txt files in the surefire folder, I'll have only the one of interest. – Farid Nov 30 '10 at 9:02
feedback

1 Answer

Surefire can't do what you're looking for. If the setting isn't available in the mojo, you can't do it.

Another option would be to write a plugin that scrapes the report directory after the test phase (perhaps in prepare-package?) and deletes any passing tests.

Personally, I just sort the directory by file size when something fails.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.