summaryrefslogtreecommitdiff
path: root/tests/test_signals.py
diff options
context:
space:
mode:
authorYouri Ackx <youri@sugoi.be>2021-01-29 14:36:38 +0100
committerGitHub <noreply@github.com>2021-01-29 14:36:38 +0100
commitb5e9f0629200d2b2f62e13e595b802948bb4fefb (patch)
tree4741857fe53c5500487894c2e3c9ff9c4ee2ce3b /tests/test_signals.py
parent904d8d3803e84257c08526e9047474215aa1c976 (diff)
parentc7b83a18a54efa9e08a9446e2d16956ee5fe353b (diff)
downloadblinker-master.tar.gz
Merge pull request #18 from jek/feature/send-asyncmaster
Adds Signal.send_async for asyncio Author: @jek
Diffstat (limited to 'tests/test_signals.py')
-rw-r--r--tests/test_signals.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_signals.py b/tests/test_signals.py
index 2d6a65a..9771e40 100644
--- a/tests/test_signals.py
+++ b/tests/test_signals.py
@@ -10,6 +10,11 @@ from nose.tools import assert_raises
jython = sys.platform.startswith('java')
pypy = hasattr(sys, 'pypy_version_info')
+try:
+ from _test_async import test_send_async
+except (SyntaxError, ImportError):
+ pass
+
def collect_acyclic_refs():
# cpython releases these immediately without a collection