From: Daniele Varrazzo Date: Mon, 12 Apr 2021 15:50:54 +0000 (+0100) Subject: Fix test run with no --loop selected X-Git-Tag: 3.0.dev0~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f096a5cf8a9c109afcbd2b7fa79fda3ef11a5d79;p=thirdparty%2Fpsycopg.git Fix test run with no --loop selected --- diff --git a/tests/conftest.py b/tests/conftest.py index 32e029693..05c3779d4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -28,6 +28,7 @@ def pytest_addoption(parser): parser.addoption( "--loop", choices=["default", "uvloop"], + default="default", help="The asyncio loop to use for async tests.", )