Skip to content

Commit

Permalink
Modified starting status string output to indicate date range (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
achauphan committed Feb 13, 2024
1 parent b715f18 commit 93ae521
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ def main():
dateRangeStart, dateRangeEnd = getDateRangeTuple(referenceDateDT, daysOfHistory)
dateUrlField = "begin="+dateRangeStart+"&end="+dateRangeEnd
dateRangeStr = dateRangeStart+" to "+dateRangeEnd

print("\n dateRangeBeginStr: "+dateRangeStart+" dateRangeEndStr: "+dateRangeEnd)

cdashQueriesCacheDir = os.getcwd()+"/test_queries_cache"
testHistoryCacheDir = cdashQueriesCacheDir+"/test_history_cache"
Expand All @@ -107,7 +105,7 @@ def main():
# Beginning of scanned details and links paragraph
cdashReportData.htmlEmailBodyTop +="<p>\n"

print("\nGetting list of nonpassing tests from CDash ...")
print("\nGetting list of initial nonpassing tests from CDash from "+dateRangeStr)

initialNonpassingTestsQueryUrl = CDQAR.getCDashQueryTestsQueryUrl(
cdashSiteUrl, cdashProjectName, None, initialNonpassingTestQueryFilters)
Expand Down Expand Up @@ -290,7 +288,6 @@ def main():
CDQAR.sendMineEmail(msg)



def getCmndLineArgs():
parser = argparse.ArgumentParser("Arguments for cdash_analyze_and_report_random_failures.py")
parser.add_argument("--cdash-site-url", default="", required=True)
Expand Down

0 comments on commit 93ae521

Please sign in to comment.