diff options
author | Federico Caselli <cfederico87@gmail.com> | 2021-10-30 22:00:25 +0200 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-11-01 15:11:25 -0400 |
commit | 36e7aebd8d6faac77570403e99f9aa7b2330fa59 (patch) | |
tree | f45950f61a4b27f128518be52157021ca4f4e8f7 /test/ext/asyncio/test_scoping_py3k.py | |
parent | a99ea884403de1e1f762e9b1eb635d7fc6ef8e6f (diff) | |
download | sqlalchemy-36e7aebd8d6faac77570403e99f9aa7b2330fa59.tar.gz |
First round of removal of python 2
References: #4600
Change-Id: I61e35bc93fe95610ae75b31c18a3282558cd4ffe
Diffstat (limited to 'test/ext/asyncio/test_scoping_py3k.py')
-rw-r--r-- | test/ext/asyncio/test_scoping_py3k.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/ext/asyncio/test_scoping_py3k.py b/test/ext/asyncio/test_scoping_py3k.py index 065dc7442..d722320f3 100644 --- a/test/ext/asyncio/test_scoping_py3k.py +++ b/test/ext/asyncio/test_scoping_py3k.py @@ -1,7 +1,6 @@ import sqlalchemy as sa from sqlalchemy import func from sqlalchemy import select -from sqlalchemy import testing from sqlalchemy.ext.asyncio import async_scoped_session from sqlalchemy.ext.asyncio import AsyncSession as _AsyncSession from sqlalchemy.orm import sessionmaker @@ -12,7 +11,6 @@ from .test_session_py3k import AsyncFixture class AsyncScopedSessionTest(AsyncFixture): - @testing.requires.python37 @async_test async def test_basic(self, async_engine): from asyncio import current_task @@ -46,7 +44,6 @@ class AsyncScopedSessionTest(AsyncFixture): await AsyncSession.flush() eq_(await conn.scalar(stmt), 0) - @testing.requires.python37 def test_attributes(self, async_engine): from asyncio import current_task |