summaryrefslogtreecommitdiff
path: root/test/base
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2021-08-11 20:22:59 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2021-08-11 20:22:59 +0000
commitabaedb12365f879e2fc4c1b9a7a8b8eeb97dc775 (patch)
tree4e037e69d67702feee89f27cce6701f034a3a958 /test/base
parentd72c90a1c21d700baf20f6ce3baab5c1f97105cd (diff)
parent214c6d6fc4b90f8f62996dfdbdfa80216d9b0a2f (diff)
downloadsqlalchemy-abaedb12365f879e2fc4c1b9a7a8b8eeb97dc775.tar.gz
Merge "limit greenlet dependency to pypi-listed platforms"
Diffstat (limited to 'test/base')
-rw-r--r--test/base/test_concurrency_py3k.py4
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]