Skip to content

Commit a544cd4

Browse files
committed
Forget me not (correctly reverse exit code)
1 parent 886a5f7 commit a544cd4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ def setup_tincan_path():
7979
test_pardir = locate_package('test')
8080
test_dir = os.path.join(test_pardir, 'test')
8181
suite = loader.discover(test_dir, pattern='*_test.py')
82-
ret = unittest.TextTestRunner(verbosity=1).run(suite).wasSuccessful()
82+
ret = not unittest.TextTestRunner(verbosity=1).run(suite).wasSuccessful()
8383
sys.exit(ret)

0 commit comments

Comments
 (0)