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 013a6f7 commit 4a630e0Copy full SHA for 4a630e0
.evergreen/scripts/setup-tests.py
@@ -125,11 +125,13 @@ def handle_test_env() -> None:
125
test_name = opts.test_name
126
sub_test_name = opts.sub_test_name
127
AUTH = os.environ.get("AUTH", "noauth")
128
- if opts.auth:
129
- AUTH = "auth"
+ if opts.auth or "auth" in test_name:
+ # Only 'auth_aws ecs' shouldn't have extra auth set.
130
+ if not (test_name == "auth_aws" and sub_test_name == "ecs"):
131
+ AUTH = "auth"
132
SSL = os.environ.get("SSL", "nossl")
- if opts.ssl or "auth" in test_name:
- AUTH = "ssl"
133
+ if opts.ssl:
134
+ SSL = "ssl"
135
TEST_ARGS = ""
136
137
# Start compiling the args we'll pass to uv.
0 commit comments