File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -369,13 +369,14 @@ def handle_test_env() -> None:
369
369
write_env ("OCSP_TLS_SHOULD_SUCCEED" , os .environ ["OCSP_TLS_SHOULD_SUCCEED" ])
370
370
371
371
if test_name == "auth_aws" and sub_test_name != "ecs-remote" :
372
- run_command (f"{ DRIVERS_TOOLS } /.evergreen/auth_aws/setup-secrets.sh" )
373
- aws_setup = f"{ DRIVERS_TOOLS } /.evergreen/auth_aws/aws_setup.sh"
372
+ auth_aws_dir = f"{ DRIVERS_TOOLS } /.evergreen/auth_aws"
373
+ run_command (f"{ auth_aws_dir } /setup-secrets.sh" )
374
+ aws_setup = f"{ auth_aws_dir } /aws_setup.sh"
374
375
if "AWS_ROLE_SESSION_NAME" in os .environ :
375
376
write_env ("AWS_ROLE_SESSION_NAME" )
376
377
if sub_test_name != "ecs" :
377
378
run_command (f"{ aws_setup } { sub_test_name } " )
378
- creds = read_env (f"{ DRIVERS_TOOLS } .evergreen/auth_aws /test-env.sh" )
379
+ creds = read_env (f"{ auth_aws_dir } /test-env.sh" )
379
380
for name , value in creds .items ():
380
381
write_env (name , value )
381
382
You can’t perform that action at this time.
0 commit comments