File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,10 @@ void makeReport() {
205205 TestsReport = TestsReport + " \r\n | " + testName + " | [" + testResult + " ](" + testUrl + " ) | " + formatTime(testTime) + " |"
206206 TestsReportXML = TestsReportXML + ' <testcase name=\\ "' + testName + ' \\ " time=\\ "' + testTime + ' \\ "><' + testResult + ' /></testcase>\n '
207207 }
208- TestsReport = TestsReport + " \r\n | We run $startedTestAmount out of $wholeTestAmount | | " + formatTime(totalTestTime) + " |"
208+ TestsReport = TestsReport + " \r\n\r\n | Summary | Value |\r\n | ------- | ----- |"
209+ TestsReport = TestsReport + " \r\n | Tests Run | $startedTestAmount /$wholeTestAmount |"
210+ TestsReport = TestsReport + " \r\n | Job Duration | " + formatTime(currentBuild. duration / 1000 ) + " |"
211+ TestsReport = TestsReport + " \r\n | Total Test Time | " + formatTime(totalTestTime) + " |"
209212 TestsReportXML = TestsReportXML + ' </testsuite>\n '
210213
211214 sh """
You can’t perform that action at this time.
0 commit comments