Skip to content

Commit 0af4129

Browse files
c
1 parent 88f8383 commit 0af4129

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

py-polars/tests/unit/io/test_lazy_csv.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,8 @@ def test_file_list_schema_mismatch(
365365

366366
if len({df.width for df in dfs}) == 1:
367367
expect = pl.concat(df.select(x=pl.first().cast(pl.Int8)) for df in dfs)
368-
out = pl.scan_csv(paths, schema={"x": pl.Int8}).collect(
369-
engine="streaming" if streaming else "in-memory"
368+
out = pl.scan_csv(paths, schema={"x": pl.Int8}).collect( # type: ignore[call-overload]
369+
engine="streaming" if streaming else "in-memory" # type: ignore[redundant-expr]
370370
)
371371

372372
assert_frame_equal(out, expect)

py-polars/tests/unit/io/test_lazy_parquet.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -791,12 +791,13 @@ def test_parquet_schema_arg(
791791
allow_missing_columns=allow_missing_columns,
792792
)
793793

794+
# Streaming currently defaults to not erroring
794795
if streaming:
795-
lf.collect(engine="streaming" if streaming else "in-memory")
796+
lf.collect(engine="streaming")
796797
continue
797798

798799
with pytest.raises(pl.exceptions.SchemaError):
799-
lf.collect(engine="streaming" if streaming else "in-memory")
800+
lf.collect(engine="streaming" if streaming else "in-memory") # type: ignore[call-overload, redundant-expr]
800801

801802
lf = pl.scan_parquet(paths, parallel=parallel, schema=schema).select("a")
802803

0 commit comments

Comments
 (0)