File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,5 @@ def verbose() -> bool:
7
7
return os .getenv ("POLARS_VERBOSE" ) == "1"
8
8
9
9
10
- eprint = partial (print , file = sys .stderr )
10
+ def eprint (* a , ** kw ):
11
+ return print (* a , file = sys .stderr , ** kw )
Original file line number Diff line number Diff line change @@ -186,7 +186,6 @@ def test_credential_provider_aws_endpoint_url_scan_no_parameters(
186
186
_set_default_credentials (tmp_path , monkeypatch )
187
187
cfg_file_path = tmp_path / "config"
188
188
189
- monkeypatch .setenv ("AWS_REGION" , "eu-west-1" )
190
189
monkeypatch .setenv ("AWS_CONFIG_FILE" , str (cfg_file_path ))
191
190
monkeypatch .setenv ("POLARS_VERBOSE" , "1" )
192
191
@@ -255,7 +254,6 @@ def test_credential_provider_aws_endpoint_url_with_storage_options(
255
254
_set_default_credentials (tmp_path , monkeypatch )
256
255
cfg_file_path = tmp_path / "config"
257
256
258
- monkeypatch .setenv ("AWS_REGION" , "eu-west-1" )
259
257
monkeypatch .setenv ("AWS_CONFIG_FILE" , str (cfg_file_path ))
260
258
monkeypatch .setenv ("POLARS_VERBOSE" , "1" )
261
259
You can’t perform that action at this time.
0 commit comments