Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(pyspark): fix failing pyspark test #10608

Merged
merged 1 commit into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ibis/backends/tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,9 +432,9 @@ def test_to_pyarrow_decimal(backend, dtype, pyarrow_dtype):
@pytest.mark.notyet(["clickhouse"], raises=Exception)
@pytest.mark.notyet(["mssql"], raises=PyDeltaTableError)
@pytest.mark.xfail_version(
pyspark=["pyspark==3.5.3"],
pyspark=["pyspark<4"],
condition=CI and IS_SPARK_REMOTE,
reason="unclear, but pyspark 3.5.3 fails to write delta on CI when using spark-connect",
reason="not supported until pyspark 4",
)
def test_roundtrip_delta(backend, con, alltypes, tmp_path, monkeypatch):
if con.name == "pyspark":
Expand Down
12 changes: 6 additions & 6 deletions requirements-dev.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading