problems: Return non-zero code when some tests fail

This commit is contained in:
Tomas Babej
2015-09-11 04:47:49 +02:00
committed by Paul Beckingham
parent cd736a0d70
commit f22322bc18
2 changed files with 11 additions and 3 deletions

View File

@@ -127,3 +127,7 @@ if __name__ == "__main__":
print()
print(color(expected_str, "yellow"))
print_category(expected)
# If we encoutered any failures, return non-zero code
if sum(errors.values()):
sys.exit(1)