We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a09d0d4 commit e54f8c6Copy full SHA for e54f8c6
.evergreen/scripts/setup_tests.py
@@ -188,6 +188,11 @@ def handle_test_env() -> None:
188
189
if test_name == "aws_lambda":
190
UV_ARGS.append("--with pip")
191
+ # Store AWS creds if they were given.
192
+ if "AWS_ACCESS_KEY_ID" in os.environ:
193
+ for key in ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN"]:
194
+ if key in os.environ:
195
+ write_env(key, os.environ[key])
196
197
if AUTH != "noauth":
198
if test_name == "data_lake":
0 commit comments