Skip to content

Commit 4cbb368

Browse files
committed
update selectors
1 parent d3e635a commit 4cbb368

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ buildvariants:
22
# Alternative hosts tests
33
- name: openssl-1.0.2-rhel7-python3.9
44
tasks:
5-
- name: .standalone-auth-ssl .server-version
5+
- name: .server-version .standalone-noauth-nossl
6+
- name: .server-version .replica_set-noauth-ssl
7+
- name: .server-version .sharded_cluster-auth-ssl
68
display_name: OpenSSL 1.0.2 RHEL7 Python3.9
79
run_on:
810
- rhel79-small

.evergreen/scripts/generate_config.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -546,11 +546,16 @@ def create_no_server_variants():
546546
def create_alternative_hosts_variants():
547547
batchtime = BATCHTIME_WEEK
548548
variants = []
549+
tags = [
550+
".server-version .standalone-noauth-nossl",
551+
".server-version .replica_set-noauth-ssl",
552+
".server-version .sharded_cluster-auth-ssl",
553+
]
549554

550555
host = HOSTS["rhel7"]
551556
variants.append(
552557
create_variant(
553-
[".standalone-auth-ssl .server-version"],
558+
tags,
554559
get_variant_name("OpenSSL 1.0.2", host, python=CPYTHONS[0]),
555560
host=host,
556561
python=CPYTHONS[0],
@@ -565,11 +570,6 @@ def create_alternative_hosts_variants():
565570
host = HOSTS[host_name]
566571
if "fips" in host_name.lower():
567572
expansions["REQUIRE_FIPS"] = "1"
568-
tags = [
569-
".server-version .standalone-noauth-nossl",
570-
".server-version .replica_set-noauth-ssl",
571-
".server-version .sharded_cluster-auth-ssl",
572-
]
573573
variants.append(
574574
create_variant(
575575
tags,

0 commit comments

Comments
 (0)