From: Daniele Varrazzo Date: Thu, 20 Oct 2022 21:45:48 +0000 (+0200) Subject: test: print out the file to delete in order to clear the segfault indicator X-Git-Tag: 3.1.4~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a84bb92157a651570d77587c13530e9afcd0105;p=thirdparty%2Fpsycopg.git test: print out the file to delete in order to clear the segfault indicator --- diff --git a/tests/conftest.py b/tests/conftest.py index e098a8e74..b1882a246 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -76,6 +76,7 @@ def pytest_sessionstart(session): cache = session.config.cache if cache.get("segfault", False): session.warn(Warning("Previous run resulted in segfault! Not running any test")) + session.warn(Warning("(delete '.pytest_cache/v/segfault' to clear this state)")) raise session.Failed cache.set("segfault", True)