File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -51,20 +51,13 @@ def pytest_configure(config):
51
51
# https://github.com/vaexio/vaex/issues/2093
52
52
# https://github.com/vaexio/vaex/issues/2113
53
53
"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]" ,
59
54
"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 ]" ,
61
56
]
62
57
63
58
64
59
def pytest_collection_modifyitems (config , items ):
65
60
if config .getoption ("--ci" ):
66
61
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 ):
70
63
item .add_marker (pytest .mark .xfail ())
You can’t perform that action at this time.
0 commit comments