From: Daniele Varrazzo Date: Fri, 29 Apr 2022 23:54:04 +0000 (+0200) Subject: test: drop test guard for unsupported Python version X-Git-Tag: 3.1~129 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0a0ba2802cccd643ef83cbfe263410c341be461;p=thirdparty%2Fpsycopg.git test: drop test guard for unsupported Python version --- diff --git a/tests/pool/test_null_pool_async.py b/tests/pool/test_null_pool_async.py index 4213accae..3e630de52 100644 --- a/tests/pool/test_null_pool_async.py +++ b/tests/pool/test_null_pool_async.py @@ -1,4 +1,3 @@ -import sys import asyncio import logging from time import time @@ -12,13 +11,7 @@ from psycopg.pq import TransactionStatus from psycopg._compat import create_task from .test_pool_async import delay_connection, ensure_waiting -pytestmark = [ - pytest.mark.asyncio, - pytest.mark.skipif( - sys.version_info < (3, 7), - reason="async pool not supported before Python 3.7", - ), -] +pytestmark = [pytest.mark.asyncio] try: from psycopg_pool import AsyncNullConnectionPool # noqa: F401