File tree 2 files changed +2
-8
lines changed
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 17
17
run : |
18
18
pip install ray git+https://github.com/modin-project/modin
19
19
pip install vaex # use stable as no nightly builds and long build time
20
- pip install git+https://github.com/ pandas-dev/pandas --no-deps --ignore-installed # TODO: use nightly builds again
20
+ pip install pandas --no-deps --ignore-installed # use stable as erroneous nightly builds and long build time
21
21
- name : Run tests
22
22
run : |
23
23
pytest tests/ -v --ci
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