Swapnil Kotwal
Swapnil Kotwal

Reputation: 5720

TestNG results groups on Jenkins

I have a tests suites as below

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="SailPoint IIQ Suite" preserver-order=true>
    <suite-files>
        <suite-file path="Test1.xml"></suite-file>
        <suite-file path="Test2.xml"></suite-file>
        <suite-file path="Test3.xml"></suite-file>
    </suite-files>
</suite>

So , I want Jenkins should show, test results tables based on Suites Names but it shows tables based on Java package names as enter image description here

Upvotes: 1

Views: 629

Answers (1)

Sopanil
Sopanil

Reputation: 36

You can use HTML Plugins and print html output to see results as per your requirement.

https://wiki.jenkins-ci.org/display/JENKINS/HTML+Publisher+Plugin

Upvotes: 2

Related Questions