Skip to content

Commit

Permalink
ci: prettify hive/parse.py (#13668)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Jan 6, 2025
1 parent 49d1b50 commit d10af50
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/assets/hive/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,13 @@
# Check if there are any unexpected failures or passes and exit with error
if unexpected_failures or unexpected_passes:
if unexpected_failures:
print("Unexpected Failures:", unexpected_failures)
print("Unexpected Failures:")
for test in unexpected_failures:
print(f" {test}")
if unexpected_passes:
print("Unexpected Passes:", unexpected_passes)
print("Unexpected Passes:")
for test in unexpected_passes:
print(f" {test}")
sys.exit(1)

print("Success.")
print("Success.")

0 comments on commit d10af50

Please sign in to comment.