From 6ff3ab9d107d7395a1ad6d06b99a094f1f6a46b9 Mon Sep 17 00:00:00 2001 From: Anderson Chauphan Date: Fri, 9 Feb 2024 17:30:38 -0700 Subject: [PATCH] Cleaned up spacing (#600) Adjusted spacing between classes and added newline character at the end of file. --- .../example_cdash_analyze_and_report_random_failures.py | 5 ++--- tribits/ci_support/CDashAnalyzeReportRandomFailures.py | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/ci_support/example_cdash_analyze_and_report_random_failures.py b/test/ci_support/example_cdash_analyze_and_report_random_failures.py index a6c9e7cba..1d8b7c398 100755 --- a/test/ci_support/example_cdash_analyze_and_report_random_failures.py +++ b/test/ci_support/example_cdash_analyze_and_report_random_failures.py @@ -17,6 +17,7 @@ def main(): cdashAnalyzeAndReportRandomFailures.runDriver() + class ExampleVersionInfoStrategy: def getTargetTopicSha1s(self, buildData): @@ -29,6 +30,7 @@ def getTargetTopicSha1s(self, buildData): def checkTargetTopicRandomFailure(self, targetTopicPair, knownTargetTopicPairs): return targetTopicPair in knownTargetTopicPairs + class ExampleExtractBuildNameStrategy: def getCoreBuildName(self, fullBuildName): @@ -36,8 +38,5 @@ def getCoreBuildName(self, fullBuildName): return coreBuildName - - - if __name__ == '__main__': sys.exit(main()) diff --git a/tribits/ci_support/CDashAnalyzeReportRandomFailures.py b/tribits/ci_support/CDashAnalyzeReportRandomFailures.py index ebc0d9364..8a9f39567 100644 --- a/tribits/ci_support/CDashAnalyzeReportRandomFailures.py +++ b/tribits/ci_support/CDashAnalyzeReportRandomFailures.py @@ -310,4 +310,5 @@ def singleSummaryReporter(self, cdashReportData): "\n
Build name: "+ self.buildName +\ "\n
Test name: "+ self.testName +\ "\n
Test history URL: "+ self.testHistoryUrl +\ - "\n
Sha1 Pair : "+ str(self.sha1Pair) \ No newline at end of file + "\n
Sha1 Pair : "+ str(self.sha1Pair) +