From 068a99d82d0bd3f4963fdd429df36d813c03bdf8 2014-12-26 10:53:22 From: Matthias Bussonnier Date: 2014-12-26 10:53:22 Subject: [PATCH] also print traceback --- diff --git a/IPython/testing/iptestcontroller.py b/IPython/testing/iptestcontroller.py index 178a02a..e41d86c 100644 --- a/IPython/testing/iptestcontroller.py +++ b/IPython/testing/iptestcontroller.py @@ -675,6 +675,8 @@ def run_iptestall(options): cov.xml_report(outfile='ipy_coverage.xml') except CoverageException as e: print('Generating coverage report failed. Are you running javascript tests only?') + import traceback + traceback.print_exc() if failed: # Ensure that our exit code indicates failure