From 177e01716790f1a0f21121c4b39123588a089a06 Mon Sep 17 00:00:00 2001 From: Robert Sachunsky Date: Sun, 6 Apr 2025 18:24:56 +0000 Subject: [PATCH] test_run: ensure exceptions are shown --- tests/test_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_run.py b/tests/test_run.py index 9528642..607140e 100644 --- a/tests/test_run.py +++ b/tests/test_run.py @@ -43,7 +43,7 @@ def test_run_eynollah_layout_filename(tmp_path, subtests, pytestconfig, caplog): with subtests.test(#msg="test CLI", options=options): with caplog.filtering(only_eynollah): - result = runner.invoke(layout_cli, args + options) + result = runner.invoke(layout_cli, args + options, catch_exceptions=False) print(result) assert result.exit_code == 0 logmsgs = [logrec.message for logrec in caplog.records]