File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -365,8 +365,8 @@ def test_file_list_schema_mismatch(
365
365
366
366
if len ({df .width for df in dfs }) == 1 :
367
367
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]
370
370
)
371
371
372
372
assert_frame_equal (out , expect )
Original file line number Diff line number Diff line change @@ -791,12 +791,13 @@ def test_parquet_schema_arg(
791
791
allow_missing_columns = allow_missing_columns ,
792
792
)
793
793
794
+ # Streaming currently defaults to not erroring
794
795
if streaming :
795
- lf .collect (engine = "streaming" if streaming else "in-memory" )
796
+ lf .collect (engine = "streaming" )
796
797
continue
797
798
798
799
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]
800
801
801
802
lf = pl .scan_parquet (paths , parallel = parallel , schema = schema ).select ("a" )
802
803
You can’t perform that action at this time.
0 commit comments