Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/expr_and_series/struct_/field_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_get_field_expr(
request: pytest.FixtureRequest,
constructor: Constructor,
) -> None:
if any(backend in str(constructor) for backend in ("dask", "modin", "sqlframe")):
if any(backend in str(constructor) for backend in ("dask", "modin")):
request.applymarker(pytest.mark.xfail)
if "pandas" in str(constructor) and PANDAS_VERSION < (2, 2, 0):
pytest.skip()
Expand Down
Loading