File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,6 @@ def pytest_configure(config):
39
39
40
40
41
41
ci_xfail_ids = [
42
- # vaex's and cudf's interchange dataframe doesn't have __dataframe__()
43
- # See https://github.com/data-apis/dataframe-api/issues/80
44
- "test_dataframe_object.py::test_dunder_dataframe[vaex]" ,
45
- "test_signatures.py::test_dataframe_method[vaex-__dataframe__]" ,
46
- "test_dataframe_object.py::test_dunder_dataframe[cudf]" ,
47
- "test_signatures.py::test_dataframe_method[cudf-__dataframe__]" ,
48
42
# https://github.com/vaexio/vaex/pull/2150
49
43
"tests/test_signatures.py::test_column_method[vaex-size]" ,
50
44
# https://github.com/rapidsai/cudf/issues/11320
@@ -91,7 +85,7 @@ def pytest_collection_modifyitems(config, items):
91
85
if config .getoption ("--ci" ):
92
86
for item in items :
93
87
if any (id_ in item .nodeid for id_ in ci_xfail_ids ):
94
- item .add_marker (pytest .mark .xfail ())
88
+ item .add_marker (pytest .mark .xfail (strict = True ))
95
89
elif any (id_ in item .nodeid for id_ in ci_skip_ids ):
96
90
item .add_marker (pytest .mark .skip ("flaky" ))
97
91
elif r_cudf_roundtrip .search (item .nodeid ):
You can’t perform that action at this time.
0 commit comments