Reputation: 2937
I use the option "Publish xUnit test result report" and it loads my *.xml
.
I thought that would be enough to display the Test Result trend (the graphics) but it doesn't.
Am I missing something?
Upvotes: 17
Views: 22887
Reputation: 654
To get the resulting trend of Jenkins's job execution you just go into your project and click on the hyperlink trend which would be available just after build history. By doing this, you will get the result of the last 20 or 30 days which is again configurable. To get trend results of the last 30 days just go to the job configuration and set keep results as 30 days.
Upvotes: 1
Reputation: 21
under Post build actions, please select "Publish Junit test build report".
But make sure that you have used the correct path for "Workspace".
Upvotes: 2
Reputation: 908
For the test trend results to appear at least 2 builds must run first
Upvotes: 31