Skip to content

Commit c471233

Browse files
authored
Merge pull request #20039 from rapidsai/branch-25.10
Forward-merge branch-25.10 into branch-25.12
2 parents 5a0a6dd + 6094eb6 commit c471233

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

python/cudf_polars/cudf_polars/dsl/ir.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,9 @@ def __init__(
337337
):
338338
raise NotImplementedError("Read from file URI")
339339
if self.typ == "csv":
340-
if any(plc.io.SourceInfo._is_remote_uri(p) for p in self.paths):
340+
if any(
341+
plc.io.SourceInfo._is_remote_uri(p) for p in self.paths
342+
): # pragma: no cover; no test yet
341343
# This works fine when the file has no leading blank lines,
342344
# but currently we do some file introspection
343345
# to skip blanks before parsing the header.

python/cudf_polars/tests/test_scan.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -422,16 +422,6 @@ def test_scan_parquet_chunked(
422422
)
423423

424424

425-
@pytest.mark.xfail(
426-
raises=pl.exceptions.ComputeError,
427-
reason="Rate limited by Hugging Face",
428-
strict=False,
429-
)
430-
def test_scan_hf_url_raises():
431-
q = pl.scan_csv("hf://datasets/scikit-learn/iris/Iris.csv")
432-
assert_ir_translation_raises(q, NotImplementedError)
433-
434-
435425
def test_select_arbitrary_order_with_row_index_column(tmp_path):
436426
df = pl.DataFrame({"a": [1, 2, 3]})
437427
df.write_parquet(tmp_path / "df.parquet")

0 commit comments

Comments
 (0)