diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2021-08-11 20:22:59 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-08-11 20:22:59 +0000 |
| commit | abaedb12365f879e2fc4c1b9a7a8b8eeb97dc775 (patch) | |
| tree | 4e037e69d67702feee89f27cce6701f034a3a958 /test/base | |
| parent | d72c90a1c21d700baf20f6ce3baab5c1f97105cd (diff) | |
| parent | 214c6d6fc4b90f8f62996dfdbdfa80216d9b0a2f (diff) | |
| download | sqlalchemy-abaedb12365f879e2fc4c1b9a7a8b8eeb97dc775.tar.gz | |
Merge "limit greenlet dependency to pypi-listed platforms"
Diffstat (limited to 'test/base')
| -rw-r--r-- | test/base/test_concurrency_py3k.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/base/test_concurrency_py3k.py b/test/base/test_concurrency_py3k.py index 45a0eb90e..0b648aa30 100644 --- a/test/base/test_concurrency_py3k.py +++ b/test/base/test_concurrency_py3k.py @@ -33,6 +33,8 @@ def go(*fns): class TestAsyncioCompat(fixtures.TestBase): + __requires__ = ("greenlet",) + @async_test async def test_ok(self): @@ -186,7 +188,7 @@ class TestAsyncioCompat(fixtures.TestBase): class TestAsyncAdaptedQueue(fixtures.TestBase): # uses asyncio.run() in alternate threads which is not available # in Python 3.6 - __requires__ = ("python37",) + __requires__ = ("python37", "greenlet") def test_lazy_init(self): run = [False] |
