From: Denis Laxalde Date: Thu, 30 Nov 2023 20:01:01 +0000 (+0100) Subject: test: let pytest show more info in summary X-Git-Tag: 3.1.14~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7dc5852432181613e526e6da490acbb051e41deb;p=thirdparty%2Fpsycopg.git test: let pytest show more info in summary We add '-ra' to pytest options so as to get report about "(a)ll except passed" tests. This is in particular useful to get the detailed message about why some tests got skipped (especially useful in CI). --- diff --git a/pyproject.toml b/pyproject.toml index 950bccb4a..0fbeb82be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,7 @@ requires = ["setuptools>=49.2.0", "wheel>=0.37"] build-backend = "setuptools.build_meta" [tool.pytest.ini_options] +addopts = "-ra" filterwarnings = [ "error", ]