mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Tests: The 'run_all' script was not correctly using exit code 0 when all tests pass
- Thanks to Gordon Ball.
This commit is contained in:
parent
9b5c0c81a3
commit
cfd997111b
2 changed files with 3 additions and 1 deletions
|
@ -129,4 +129,4 @@ if __name__ == "__main__":
|
|||
print_category(expected)
|
||||
|
||||
# If we encoutered any failures, return non-zero code
|
||||
sys.exit(1 if error_int or unexpected_int else 0)
|
||||
sys.exit(1 if int(error_int) or int(unexpected_int) else 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue