From e198970254ac0096490030a9a315f00cc01322a6 Mon Sep 17 00:00:00 2001 From: Philip Cook Date: Sat, 18 May 2024 11:25:10 -0400 Subject: [PATCH] ENH: Verbose tests --- tests/common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/common.py b/tests/common.py index 07f62517..feca2b6b 100644 --- a/tests/common.py +++ b/tests/common.py @@ -10,4 +10,6 @@ def run_tests(): - unittest.main() \ No newline at end of file + import faulthandler + faulthandler.enable() + unittest.main(vebosity=2)) \ No newline at end of file