Skip to content

Commit 38d69c2

Browse files
committed
Meta test to check --ci is testing intended libraries
1 parent f3d8c35 commit 38d69c2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/test_meta.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
from hypothesis import strategies as st
88

99
from .strategies import MockDataFrame, mock_dataframes, utf8_strings
10-
from .wrappers import LibraryInfo
10+
from .wrappers import LibraryInfo, libname_to_libinfo
11+
12+
13+
def test_ci_has_correct_library_params(pytestconfig):
14+
if not pytestconfig.getoption("--ci"):
15+
pytest.skip("only intended for --ci runs")
16+
assert set(libname_to_libinfo.keys()) == {"pandas", "vaex", "modin"}
1117

1218

1319
@given(utf8_strings())

0 commit comments

Comments
 (0)