1
0
Fork 0
tqdm/tests/tests_rich.py
Daniel Baumann 2da88b2fbc
Adding upstream version 4.64.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 19:13:00 +01:00

10 lines
249 B
Python

"""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')