From 967622305c24e83f78bfcde5423cde3db69bf787 Mon Sep 17 00:00:00 2001 From: Sterling Harper Date: Tue, 30 Jun 2015 22:20:46 -0600 Subject: [PATCH] Hack to see why CI tests are failing --- tests/run_tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/run_tests.py b/tests/run_tests.py index 3550ad7cb..05ec76724 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -509,4 +509,7 @@ for test in tests: print(' '*len(test)+tests[test].msg) return_code = 1 +with open(logfilename) as fh: + print(fh.read()) + sys.exit(return_code)