From e0a0ba2802cccd643ef83cbfe263410c341be461 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sat, 30 Apr 2022 01:54:04 +0200 Subject: [PATCH] test: drop test guard for unsupported Python version --- tests/pool/test_null_pool_async.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) 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 -- 2.47.3