blob: 6f089264c2441e74d6dbe8adef381c665135c6f7 [file] [log] [blame] [edit]
"""Tests `tqdm.asyncio` on `python>=3.7`."""
import sys
if sys.version_info[:2] > (3, 6):
from .py37_asyncio import * # NOQA, pylint: disable=wildcard-import
else:
from .tests_tqdm import skip
try:
skip("async not supported", allow_module_level=True)
except TypeError:
pass