summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2016-03-20 09:25:40 +0100
committerStefan Behnel <stefan_ml@behnel.de>2016-03-20 09:25:40 +0100
commit0c03ca0dbac42fb1d5006d2e11f682a3de2a9051 (patch)
treecde37b9c4d7ba67d62179059e881da8e1c17208b
parenta3e49764fd21ce29e555a5a4674028f4646880e6 (diff)
downloadcython-pep515_underscores_in_numbers.tar.gz
make test runner exit with non-0 return status on exceptions (this shadowed an actual bug in this branch)pep515_underscores_in_numbers
-rwxr-xr-xruntests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtests.py b/runtests.py
index 4b71d6d0a..c3286fcf3 100755
--- a/runtests.py
+++ b/runtests.py
@@ -2100,3 +2100,4 @@ if __name__ == '__main__':
except PendingThreadsError:
# normal program exit won't kill the threads, do it the hard way here
flush_and_terminate(1)
+ sys.exit(1)