]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
test: register the pipeline marker consistently with the others
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 10 Jul 2022 20:23:14 +0000 (21:23 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Sun, 10 Jul 2022 20:23:14 +0000 (21:23 +0100)
tests/conftest.py

index 7c4a5fb360d11221962bff964221ea811c480916..71e574f0b2cf587a18edaec3c21b565680e2f65a 100644 (file)
@@ -25,16 +25,12 @@ def pytest_configure(config):
         "timing: the test is timing based and can fail on cheese hardware",
         "dns: the test requires dnspython to run",
         "postgis: the test requires the PostGIS extension to run",
+        "pipeline: the test runs with connection in pipeline mode",
     ]
 
     for marker in markers:
         config.addinivalue_line("markers", marker)
 
-    config.addinivalue_line(
-        "markers",
-        "pipeline: the test runs with connection in pipeline mode",
-    )
-
 
 def pytest_addoption(parser):
     parser.addoption(