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.2.0~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0cb6dcccf920c55ae4288f525841d52df86fca8e;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 7735c18b5..f33ac7ff8 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", ]