Skip to content

Commit

Permalink
Merge branch 'test-history-href' into random-failure-tool-patch
Browse files Browse the repository at this point in the history
  • Loading branch information
achauphan committed Feb 15, 2024
2 parents c458830 + 8574b11 commit 60421bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def test_random_failure(self):
"Found random failing tests: 1<br>",
"<br>Build name: build1",
"<br>Test name: testname1",
"<br>Test history URL: https://something[.]com/cdash/queryTests[.]php[?]project=Project%20Name&begin=2018-10-26&end=2018-10-28&filtercount=3&showfilters=1&filtercombine=and&field1=testname&compare1=63&value1=testname1&field2=groupname&compare2=63&value2=Group%20Name&field3=buildname&compare3=63&value3=buildname1",
"<br>Test history URL: <a href=\"https://something[.]com/cdash/queryTests[.]php[?]project=Project%20Name&begin=2018-10-26&end=2018-10-28&filtercount=3&showfilters=1&filtercombine=and&field1=testname&compare1=63&value1=testname1&field2=groupname&compare2=63&value2=Group%20Name&field3=buildname&compare3=63&value3=buildname1\">Link</a>",
"<br>Sha1 Pair : \('592ea0d5', 'b07e361c'\)",
"</p>"
],
Expand Down
2 changes: 1 addition & 1 deletion tribits/ci_support/CDashAnalyzeReportRandomFailures.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,6 @@ def singleSummaryReporter(self, cdashReportData):
cdashReportData.htmlEmailBodyTop += \
"\n<br>Build name: "+ self.buildName +\
"\n<br>Test name: "+ self.testName +\
"\n<br>Test history URL: "+ self.testHistoryUrl +\
"\n<br>Test history URL: <a href=\""+self.testHistoryUrl+"\">Link</a>" +\
"\n<br>Sha1 Pair : "+ str(self.sha1Pair)

0 comments on commit 60421bf

Please sign in to comment.