Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm familiar with aggregating junit test results within a single build, but are there any tools that let you aggregate results across different builds?

I'd like to discover which tests failed most frequently, though not necessarily continuously.

share|improve this question

2 Answers

I'd go for a simple shell script (grep+sed / awk), gathering output from distinct text/xml files. Alternatively, you could define a custom formatter which appends failure logs to a single file.

share|improve this answer

Maven has aggregation support, but that requires switching the whole build to maven.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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