Skip to content

Commit 7cb07d6

Browse files
committed
add test workaround
1 parent bce2e49 commit 7cb07d6

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ buildvariants:
265265
# Enterprise auth tests
266266
- name: auth-enterprise-rhel8
267267
tasks:
268-
- name: .test-non-standard .noauth
268+
- name: .test-non-standard .auth
269269
display_name: Auth Enterprise RHEL8
270270
run_on:
271271
- rhel87-small
@@ -274,7 +274,7 @@ buildvariants:
274274
AUTH: auth
275275
- name: auth-enterprise-macos
276276
tasks:
277-
- name: .test-non-standard !.pypy .noauth
277+
- name: .test-non-standard !.pypy .auth
278278
display_name: Auth Enterprise macOS
279279
run_on:
280280
- macos-14
@@ -283,7 +283,7 @@ buildvariants:
283283
AUTH: auth
284284
- name: auth-enterprise-win64
285285
tasks:
286-
- name: .test-non-standard !.pypy .noauth
286+
- name: .test-non-standard !.pypy .auth
287287
display_name: Auth Enterprise Win64
288288
run_on:
289289
- windows-64-vsMulti-small
@@ -363,11 +363,11 @@ buildvariants:
363363
# Load balancer tests
364364
- name: load-balancer
365365
tasks:
366-
- name: .test-non-standard .server-6.0 .sharded_cluster-noauth-nossl
367-
- name: .test-non-standard .server-7.0 .sharded_cluster-noauth-nossl
368-
- name: .test-non-standard .server-8.0 .sharded_cluster-noauth-nossl
369-
- name: .test-non-standard .server-rapid .sharded_cluster-noauth-nossl
370-
- name: .test-non-standard .server-latest .sharded_cluster-noauth-nossl
366+
- name: .test-non-standard .server-6.0 .sharded_cluster-auth-ssl
367+
- name: .test-non-standard .server-7.0 .sharded_cluster-auth-ssl
368+
- name: .test-non-standard .server-8.0 .sharded_cluster-auth-ssl
369+
- name: .test-non-standard .server-rapid .sharded_cluster-auth-ssl
370+
- name: .test-non-standard .server-latest .sharded_cluster-auth-ssl
371371
display_name: Load Balancer
372372
run_on:
373373
- rhel87-small

.evergreen/scripts/generate_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def get_encryption_expansions(encryption):
170170

171171
def create_load_balancer_variants():
172172
tasks = [
173-
f".test-non-standard .server-{v} .sharded_cluster-noauth-nossl"
173+
f".test-non-standard .server-{v} .sharded_cluster-auth-ssl"
174174
for v in get_versions_from("6.0")
175175
]
176176
expansions = dict(TEST_NAME="load_balancer")
@@ -212,9 +212,9 @@ def create_enterprise_auth_variants():
212212
for host in ["rhel8", "macos", "win64"]:
213213
expansions = dict(TEST_NAME="enterprise_auth", AUTH="auth")
214214
display_name = get_variant_name("Auth Enterprise", host)
215-
tasks = [".test-non-standard .noauth"]
215+
tasks = [".test-non-standard .auth"]
216216
if host != "rhel8":
217-
tasks = [".test-non-standard !.pypy .noauth"]
217+
tasks = [".test-non-standard !.pypy .auth"]
218218
variant = create_variant(tasks, display_name, host=host, expansions=expansions)
219219
variants.append(variant)
220220
return variants

0 commit comments

Comments
 (0)