diff options
author | Youri Ackx <youri@sugoi.be> | 2021-01-29 14:36:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 14:36:38 +0100 |
commit | b5e9f0629200d2b2f62e13e595b802948bb4fefb (patch) | |
tree | 4741857fe53c5500487894c2e3c9ff9c4ee2ce3b /tests/test_signals.py | |
parent | 904d8d3803e84257c08526e9047474215aa1c976 (diff) | |
parent | c7b83a18a54efa9e08a9446e2d16956ee5fe353b (diff) | |
download | blinker-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.py | 5 |
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 |