From 7f99ba5d06d646eef03bd3848fae579d0f51e2f6 Mon Sep 17 00:00:00 2001 From: Gord Thompson Date: Sat, 23 Oct 2021 11:24:40 -0600 Subject: [PATCH] Remove code to force ENABLE_ASYNCIO to False Forcing ENABLE_ASYNCIO to False was interfering with testing under async drivers when the (third-party dialect) test suite included both SQLAlchemy and Alembic tests. Change-Id: I2fe40049c24ba8eba0a10011849a912c03aa381e --- alembic/testing/__init__.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/alembic/testing/__init__.py b/alembic/testing/__init__.py index 98ef82da..0407adfe 100644 --- a/alembic/testing/__init__.py +++ b/alembic/testing/__init__.py @@ -27,10 +27,3 @@ from .assertions import is_true from .assertions import ne_ from .fixtures import TestBase from .util import resolve_lambda - -try: - from sqlalchemy.testing import asyncio -except ImportError: - pass -else: - asyncio.ENABLE_ASYNCIO = False -- 2.47.2