Skip to content

Commit 3f805e0

Browse files
committed
Let's see if this makes the tests fail properly
1 parent 6655eb4 commit 3f805e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

run_tests.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env python
22

3-
import sys
43
import unittest
54
import imp
65
import os
@@ -39,9 +38,11 @@ def collect_tests():
3938
cov.start()
4039

4140
suite = collect_tests()
42-
unittest.TextTestRunner(verbosity=1).run(suite)
41+
res = unittest.TextTestRunner(verbosity=1).run(suite)
4342

4443
if coverage:
4544
cov.stop()
4645
cov.save()
4746
cov.report(show_missing=False)
47+
48+
raise SystemExit(res)

0 commit comments

Comments
 (0)