Skip to content

Commit ba6fff5

Browse files
committed
Remove modin skips from xfails
Errors seemed to stem from faulty `frame_equal()`, which is now fixed
1 parent 8aff472 commit ba6fff5

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

tests/conftest.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,13 @@ def pytest_configure(config):
5151
# https://github.com/vaexio/vaex/issues/2093
5252
# https://github.com/vaexio/vaex/issues/2113
5353
"test_from_dataframe.py::test_from_dataframe_roundtrip[pandas-vaex]",
54-
"test_from_dataframe.py::test_from_dataframe_roundtrip[vaex-pandas]",
55-
]
56-
57-
ci_flaky_ids = [
58-
"test_from_dataframe.py::test_from_dataframe_roundtrip[modin-pandas]",
5954
"test_from_dataframe.py::test_from_dataframe_roundtrip[modin-vaex]",
60-
"test_from_dataframe.py::test_from_dataframe_roundtrip[modin-modin]",
55+
"test_from_dataframe.py::test_from_dataframe_roundtrip[vaex-pandas]",
6156
]
6257

6358

6459
def pytest_collection_modifyitems(config, items):
6560
if config.getoption("--ci"):
6661
for item in items:
67-
if any(id_ in item.nodeid for id_ in ci_flaky_ids):
68-
item.add_marker(pytest.mark.skip("flaky"))
69-
elif any(id_ in item.nodeid for id_ in ci_failing_ids):
62+
if any(id_ in item.nodeid for id_ in ci_failing_ids):
7063
item.add_marker(pytest.mark.xfail())

0 commit comments

Comments
 (0)