Skip to content

Commit c2af57b

Browse files
committed
Prevent running vaex tests if vaex isn't installed
1 parent 24fe0ee commit c2af57b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: tests/test_optional/test_px/test_px_input.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
import warnings
1515

1616

17-
# FIXME: don't test with vaex if vaex isn't installed
18-
if (optional_imports.get_module("vaex") is None) and (sys.version_info >= (3, 12)):
17+
if (optional_imports.get_module("vaex") is None):
1918
TEST_LIBS = ["polars"]
2019
else:
2120
TEST_LIBS = ["vaex", "polars"]

0 commit comments

Comments
 (0)