summaryrefslogtreecommitdiffstats
path: root/tests/tests_rich.py
blob: c75e246d959a18e1b6f56568b536f783766052eb (plain)
1
2
3
4
5
6
7
8
9
10
"""Test `tqdm.rich`."""
import sys

from .tests_tqdm import importorskip, mark


@mark.skipif(sys.version_info[:3] < (3, 6, 1), reason="`rich` needs py>=3.6.1")
def test_rich_import():
    """Test `tqdm.rich` import"""
    importorskip('tqdm.rich')