Skip to content

Commit

Permalink
Cleaned up spacing (#600)
Browse files Browse the repository at this point in the history
Adjusted spacing between classes and added newline character at
the end of file.
  • Loading branch information
achauphan committed Feb 13, 2024
1 parent 40d2d28 commit 6ff3ab9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def main():

cdashAnalyzeAndReportRandomFailures.runDriver()


class ExampleVersionInfoStrategy:

def getTargetTopicSha1s(self, buildData):
Expand All @@ -29,15 +30,13 @@ def getTargetTopicSha1s(self, buildData):
def checkTargetTopicRandomFailure(self, targetTopicPair, knownTargetTopicPairs):
return targetTopicPair in knownTargetTopicPairs


class ExampleExtractBuildNameStrategy:

def getCoreBuildName(self, fullBuildName):
coreBuildName = fullBuildName.rsplit('-',1)[0]
return coreBuildName





if __name__ == '__main__':
sys.exit(main())
3 changes: 2 additions & 1 deletion tribits/ci_support/CDashAnalyzeReportRandomFailures.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,4 +310,5 @@ def singleSummaryReporter(self, cdashReportData):
"\n<br>Build name: "+ self.buildName +\
"\n<br>Test name: "+ self.testName +\
"\n<br>Test history URL: "+ self.testHistoryUrl +\
"\n<br>Sha1 Pair : "+ str(self.sha1Pair)
"\n<br>Sha1 Pair : "+ str(self.sha1Pair)

0 comments on commit 6ff3ab9

Please sign in to comment.