summaryrefslogtreecommitdiff
path: root/test/ext/asyncio/test_session_py3k.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2020-12-09 08:52:57 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2020-12-09 08:52:57 -0500
commitc736eef8b35841af89ec19469aa496585efd3865 (patch)
tree4699cf11577807337e92edb197c8a52b4d5969af /test/ext/asyncio/test_session_py3k.py
parent23343f87f3297ad31d7315ac0e5312db10ef7592 (diff)
downloadsqlalchemy-c736eef8b35841af89ec19469aa496585efd3865.tar.gz
Revert "Merge "add aiomysql support""
This reverts commit 23343f87f3297ad31d7315ac0e5312db10ef7592, reversing changes made to c5831b1abd98c46ef7eab7ee82ead18756aea112. The crashes that occur in jenkins have not been solved and are now impacting master. I am not able to reproduce the failure, including running on the CI machines directly, and a few runs where I sat there for 20 minutes and watched, it didn't happen. it is the ultimate heisenbug. Additionally, there's a reference to "arraysize" that doesn't exist in fetchmany() and there seem to be no tests that exercise this for any DBAPI which is also a major bug to be fixed. References: #5747
Diffstat (limited to 'test/ext/asyncio/test_session_py3k.py')
-rw-r--r--test/ext/asyncio/test_session_py3k.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/ext/asyncio/test_session_py3k.py b/test/ext/asyncio/test_session_py3k.py
index 44e295542..a3b8add67 100644
--- a/test/ext/asyncio/test_session_py3k.py
+++ b/test/ext/asyncio/test_session_py3k.py
@@ -55,7 +55,6 @@ class AsyncSessionQueryTest(AsyncFixture):
eq_(result.scalars().all(), self.static.user_address_result)
@async_test
- @testing.requires.independent_cursors
async def test_stream_partitions(self, async_session):
User = self.classes.User
@@ -100,7 +99,6 @@ class AsyncSessionTransactionTest(AsyncFixture):
result = await async_session.execute(select(User))
eq_(result.scalar(), u1)
- await outer_conn.rollback()
eq_(await outer_conn.scalar(select(func.count(User.id))), 1)
@async_test
@@ -120,7 +118,6 @@ class AsyncSessionTransactionTest(AsyncFixture):
await async_session.commit()
- await outer_conn.rollback()
eq_(await outer_conn.scalar(select(func.count(User.id))), 1)
@async_test
@@ -142,7 +139,6 @@ class AsyncSessionTransactionTest(AsyncFixture):
finally:
await trans.commit()
- await outer_conn.rollback()
eq_(await outer_conn.scalar(select(func.count(User.id))), 1)
@async_test