tqdm/tests/tests_asyncio.py

8 lines
174 B
Python
Raw Normal View History

2020-07-12 12:07:08 +00:00
import sys
if sys.version_info[:2] > (3, 6):
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)