From 59d8550f02b88382314a8e6a63cb93a2fcc3a688 Mon Sep 17 00:00:00 2001 From: Josh Meyers Date: Tue, 17 Sep 2024 13:38:52 -0700 Subject: [PATCH] Improve python test_blah.py output --- tests/galsim_test_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/galsim_test_helpers.py b/tests/galsim_test_helpers.py index 8d8860ac02..105a538d98 100644 --- a/tests/galsim_test_helpers.py +++ b/tests/galsim_test_helpers.py @@ -403,7 +403,7 @@ def runtests(filename, parser=None): parser.add_argument('--profile', action='store_true', help='Profile tests') parser.add_argument('--prof_out', default=None, help="Profiler output file") args, unknown_args = parser.parse_known_args() - pytest_args = [filename] + unknown_args + ["--run_slow"] + pytest_args = [filename] + unknown_args + ["--run_slow", "--tb=short", "-s"] if args.profile: import cProfile, pstats