From c82f42cbd79b1e2137aca6d73804dd47e72f1fda Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Wed, 5 Oct 2022 15:28:04 +0200 Subject: [PATCH 1/2] make pytest summary more concise --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 1dde465d32f..30e96eccfad 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,7 +1,7 @@ [pytest] addopts = # show summary of all tests that did not pass - -ra + -rfEX # Make tracebacks shorter --tb=native # enable all warnings From 96228419b2c27484f7826fa13228d0fd5f889585 Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Thu, 6 Oct 2022 08:11:58 +0200 Subject: [PATCH 2/2] fix comment --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 30e96eccfad..a2f59ecec46 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,6 +1,6 @@ [pytest] addopts = - # show summary of all tests that did not pass + # show tests that (f)ailed, (E)rror, or (X)passed in the summary -rfEX # Make tracebacks shorter --tb=native