We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--ci
1 parent 776534e commit f798bbfCopy full SHA for f798bbf
tests/test_meta.py
@@ -7,7 +7,13 @@
7
from hypothesis import strategies as st
8
9
from .strategies import MockDataFrame, mock_dataframes, utf8_strings
10
-from .wrappers import LibraryInfo
+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"}
17
18
19
@given(utf8_strings())
0 commit comments