Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nightly_testing/retrigger_nightlies.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ def check_failed_suites(valid_suites, cylc_run):
# Parse the valid_suites for ones which are cylc8 and have failed tasks
failed_suites = check_failed_suites(valid_suites, cylc_run)

if not failed_suites:
print("No failed suites found")
raise SystemExit(0)

print("\nFound the following suites with errors:")
for suite in failed_suites:
print(f" * {suite}")
Expand Down
Loading