2020-07-12 12:07:08 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.version_info[:2] > (3, 6):
|
2020-10-24 20:56:26 +00:00
|
|
|
from .py37_asyncio import * # NOQA
|
2020-07-12 12:07:08 +00:00
|
|
|
else:
|
2020-10-24 18:36:45 +00:00
|
|
|
import pytest
|
|
|
|
pytest.skip("async not supported", allow_module_level=True)
|