diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-06-02 18:24:43 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-06-02 18:24:43 -0400 |
commit | cf8c76b9fcfcd1e79da4b089e7a86d6300d737e1 (patch) | |
tree | 8399586c3a6c45f1d4b184e1325a7dae308476f3 /test/ext/asyncio/test_engine_py3k.py | |
parent | f51c56b8dca0569269a69bd85c25fcfed39a3c9e (diff) | |
download | sqlalchemy-cf8c76b9fcfcd1e79da4b089e7a86d6300d737e1.tar.gz |
temporarily disable test_no_attach_to_event_loop
this test currently causes the test suite to hang; it previously
was not actually running the worker thread
as the testing_engine() fixture
was rejecting the "transfer_staticpool" keyword argument.
as we seem to have a greenlet-related segfault in 3.10.0b2 I am
going to have to get the greenlet devs to run the test suite
so i want to get anything not totally smooth out of it for the
moment.
Change-Id: Ib453d0bc23ca013598bc80ff29e5da496771d5b1
Diffstat (limited to 'test/ext/asyncio/test_engine_py3k.py')
-rw-r--r-- | test/ext/asyncio/test_engine_py3k.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/ext/asyncio/test_engine_py3k.py b/test/ext/asyncio/test_engine_py3k.py index 18e55ff92..694189167 100644 --- a/test/ext/asyncio/test_engine_py3k.py +++ b/test/ext/asyncio/test_engine_py3k.py @@ -227,8 +227,14 @@ class AsyncEngineTest(EngineFixture): is_false(async_engine == None) + # NOTE: this test currently causes the test suite to hang; it previously + # was not actually running the worker thread + # as the testing_engine() fixture + # was rejecting the "transfer_staticpool" keyword argument @async_test - async def test_no_attach_to_event_loop(self, testing_engine): + async def temporarily_dont_test_no_attach_to_event_loop( + self, testing_engine + ): """test #6409""" import asyncio |