summaryrefslogtreecommitdiffstats
path: root/tests/tests_asyncio.py
blob: 6f089264c2441e74d6dbe8adef381c665135c6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""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