kostja
kostja

Reputation: 61538

How to quickly find out which tests have been fixed in jenkins

I have inherited a quite rotten test suite with over 1000 tests, where several hundreds are failing. There are several people fixing the tests, and I would like to quickly see which tests have been fixed between test job runs.

Currently, I copy the lists of failed tests from two runs, sort and diff them. I hope there is a better way.

The only thing I could find that mentions a better possibility is this old thread.

Thank you.

Upvotes: 1

Views: 175

Answers (1)

Electrawn
Electrawn

Reputation: 2254

Have you considered using Sonar (now SonarQube)? You can pipe test results over to Sonar and keep test history in a searchable format. We use PMD/Findbugs/etc and test results to red/yellow/green a job for further CI deployment, but use Sonar for trends and analysis.

Upvotes: 1

Related Questions