Add stdout notice if any stage fails

This commit is contained in:
Jack Grigg
2017-10-16 16:16:14 -04:00
parent 88fbdc4868
commit 6e98511cf1

View File

@@ -185,6 +185,7 @@ def main():
passed &= run_stage(s)
if not passed:
print("!!! One or more test stages failed !!!")
sys.exit(1)
if __name__ == '__main__':