@@ -39,7 +39,8 @@ def pytest_configure(config):
39
39
40
40
ci_failing_ids = [
41
41
# dataframe objects return the interchange dataframe, not a dict, although
42
- # this behaviour might be in the spec soon.
42
+ # this is the behaviour that should be in the spec soon.
43
+ # See https://github.com/data-apis/dataframe-api/pull/74
43
44
"test_dataframe_object.py::test_toplevel_dunder_dataframe[pandas]" ,
44
45
"test_dataframe_object.py::test_toplevel_dunder_dataframe[vaex]" ,
45
46
"test_dataframe_object.py::test_toplevel_dunder_dataframe[modin]" ,
@@ -54,6 +55,28 @@ def pytest_configure(config):
54
55
"test_from_dataframe.py::test_from_dataframe_roundtrip[pandas-vaex]" ,
55
56
"test_from_dataframe.py::test_from_dataframe_roundtrip[modin-vaex]" ,
56
57
"test_from_dataframe.py::test_from_dataframe_roundtrip[vaex-pandas]" ,
58
+ # https://github.com/vaexio/vaex/issues/2093
59
+ "test_column_object.py::test_size[vaex]" ,
60
+ # https://github.com/vaexio/vaex/issues/2118
61
+ "test_column_object.py::test_dtype[vaex]" ,
62
+ # Raises TypeError as opposed to RuntimeError, although this is the
63
+ # behaviour that should be in the spec soon.
64
+ # See https://github.com/data-apis/dataframe-api/pull/74
65
+ "test_column_object.py::test_describe_categorical[pandas]" ,
66
+ "test_column_object.py::test_describe_categorical[vaex]" ,
67
+ "test_column_object.py::test_describe_categorical[cudf]" ,
68
+ # https://github.com/pandas-dev/pandas/issues/47789
69
+ "test_column_object.py::test_null_count[pandas]" ,
70
+ # https://github.com/vaexio/vaex/issues/2120
71
+ "test_column_object.py::test_null_count[vaex]" ,
72
+ # https://github.com/modin-project/modin/issues/4687
73
+ "test_column_object.py::test_null_count[modin]" ,
74
+ # https://github.com/vaexio/vaex/issues/2121
75
+ "test_column_object.py::test_get_chunks[vaex]" ,
76
+ # https://github.com/vaexio/vaex/issues/2122
77
+ "test_column_object.py::test_get_buffers[vaex]" ,
78
+ # https://github.com/rapidsai/cudf/issues/11308
79
+ "test_column_object.py::test_get_buffers[cudf]" ,
57
80
]
58
81
59
82
@@ -62,5 +85,3 @@ def pytest_collection_modifyitems(config, items):
62
85
for item in items :
63
86
if any (id_ in item .nodeid for id_ in ci_failing_ids ):
64
87
item .add_marker (pytest .mark .xfail ())
65
- elif "test_column_object" in item .nodeid :
66
- item .add_marker (pytest .mark .skip ("TODO" ))
0 commit comments