Skip to content

Commit ad678a4

Browse files
committed
update variants
1 parent c75c8ee commit ad678a4

File tree

2 files changed

+18
-13
lines changed

2 files changed

+18
-13
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,12 +1274,12 @@ buildvariants:
12741274
tags: [versionedApi_tag]
12751275
- name: stable-api-accept-v2-rhel8-python3.9-auth
12761276
tasks:
1277-
- name: "!.replica_set .5.0 .noauth .nossl .sync_async"
1278-
- name: "!.replica_set .6.0 .noauth .nossl .sync_async"
1279-
- name: "!.replica_set .7.0 .noauth .nossl .sync_async"
1280-
- name: "!.replica_set .8.0 .noauth .nossl .sync_async"
1281-
- name: "!.replica_set .rapid .noauth .nossl .sync_async"
1282-
- name: "!.replica_set .latest .noauth .nossl .sync_async"
1277+
- name: .standalone .5.0 .noauth .nossl .sync_async
1278+
- name: .standalone .6.0 .noauth .nossl .sync_async
1279+
- name: .standalone .7.0 .noauth .nossl .sync_async
1280+
- name: .standalone .8.0 .noauth .nossl .sync_async
1281+
- name: .standalone .rapid .noauth .nossl .sync_async
1282+
- name: .standalone .latest .noauth .nossl .sync_async
12831283
display_name: Stable API accept v2 RHEL8 Python3.9 Auth
12841284
run_on:
12851285
- rhel87-small
@@ -1307,12 +1307,12 @@ buildvariants:
13071307
tags: [versionedApi_tag]
13081308
- name: stable-api-accept-v2-rhel8-python3.13-auth
13091309
tasks:
1310-
- name: "!.replica_set .5.0 .noauth .nossl .sync_async"
1311-
- name: "!.replica_set .6.0 .noauth .nossl .sync_async"
1312-
- name: "!.replica_set .7.0 .noauth .nossl .sync_async"
1313-
- name: "!.replica_set .8.0 .noauth .nossl .sync_async"
1314-
- name: "!.replica_set .rapid .noauth .nossl .sync_async"
1315-
- name: "!.replica_set .latest .noauth .nossl .sync_async"
1310+
- name: .standalone .5.0 .noauth .nossl .sync_async
1311+
- name: .standalone .6.0 .noauth .nossl .sync_async
1312+
- name: .standalone .7.0 .noauth .nossl .sync_async
1313+
- name: .standalone .8.0 .noauth .nossl .sync_async
1314+
- name: .standalone .rapid .noauth .nossl .sync_async
1315+
- name: .standalone .latest .noauth .nossl .sync_async
13161316
display_name: Stable API accept v2 RHEL8 Python3.13 Auth
13171317
run_on:
13181318
- rhel87-small

.evergreen/scripts/generate_config.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,6 @@ def create_storage_engine_variants():
546546
def create_stable_api_variants():
547547
host = DEFAULT_HOST
548548
tags = ["versionedApi_tag"]
549-
tasks = [f"!.replica_set .{v} .noauth .nossl .sync_async" for v in get_versions_from("5.0")]
550549
variants = []
551550
types = ["require v1", "accept v2"]
552551

@@ -560,11 +559,17 @@ def create_stable_api_variants():
560559
expansions["REQUIRE_API_VERSION"] = "1"
561560
# MONGODB_API_VERSION is the apiVersion to use in the test suite.
562561
expansions["MONGODB_API_VERSION"] = "1"
562+
tasks = [
563+
f"!.replica_set .{v} .noauth .nossl .sync_async" for v in get_versions_from("5.0")
564+
]
563565
else:
564566
# Test against a cluster with acceptApiVersion2 but without
565567
# requireApiVersion, and don't automatically add apiVersion to
566568
# clients created in the test suite.
567569
expansions["ORCHESTRATION_FILE"] = "versioned-api-testing.json"
570+
tasks = [
571+
f".standalone .{v} .noauth .nossl .sync_async" for v in get_versions_from("5.0")
572+
]
568573
base_display_name = f"Stable API {test_type}"
569574
display_name = get_display_name(base_display_name, host, python=python, **expansions)
570575
variant = create_variant(

0 commit comments

Comments
 (0)