Skip to content

Commit 8e04fc1

Browse files
committed
link pyspark and ibis issues
1 parent 7efe2d2 commit 8e04fc1

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

tests/expr_and_series/list/mean_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def test_mean_expr(request: pytest.FixtureRequest, constructor: Constructor) ->
1717
if any(
1818
backend in str(constructor) for backend in ("dask", "cudf", "sqlframe", "pyspark")
1919
):
20+
# PySpark issue: https://issues.apache.org/jira/browse/SPARK-54382
2021
request.applymarker(pytest.mark.xfail)
2122
if "pandas" in str(constructor):
2223
if PANDAS_VERSION < (2, 2):

tests/expr_and_series/list/median_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ def test_median_expr(request: pytest.FixtureRequest, constructor: Constructor) -
1818
backend in str(constructor)
1919
for backend in ("dask", "cudf", "sqlframe", "ibis", "pyspark")
2020
) or ("polars" in str(constructor) and POLARS_VERSION < (0, 20, 7)):
21+
# PySpark issue: https://issues.apache.org/jira/browse/SPARK-54382
22+
# ibis issue: https://github.com/ibis-project/ibis/issues/11788
2123
request.applymarker(pytest.mark.xfail)
2224
if "pandas" in str(constructor):
2325
if PANDAS_VERSION < (2, 2):

tests/expr_and_series/list/sum_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_sum_expr(request: pytest.FixtureRequest, constructor: Constructor) -> N
1717
if any(
1818
backend in str(constructor) for backend in ("dask", "cudf", "sqlframe", "pyspark")
1919
):
20-
# sqlframe issue: https://github.com/eakmanrq/sqlframe/issues/548
20+
# PySpark issue: https://issues.apache.org/jira/browse/SPARK-54382
2121
request.applymarker(pytest.mark.xfail)
2222
if "pandas" in str(constructor):
2323
if PANDAS_VERSION < (2, 2):

0 commit comments

Comments
 (0)