Skip to content

Commit 38b751d

Browse files
committed
clean up
1 parent a63d36b commit 38b751d

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ tasks:
342342
SSL: nossl
343343
TOPOLOGY: standalone
344344
TEST_NAME: default_sync
345-
tags: [no-toolchain, standalone-noauth-nossl]
345+
tags: [test-no-toolchain, standalone-noauth-nossl]
346346
- name: test-no-toolchain-async-noauth-ssl-replica-set
347347
commands:
348348
- func: run server
@@ -356,7 +356,7 @@ tasks:
356356
SSL: ssl
357357
TOPOLOGY: replica_set
358358
TEST_NAME: default_async
359-
tags: [no-toolchain, replica_set-noauth-ssl]
359+
tags: [test-no-toolchain, replica_set-noauth-ssl]
360360
- name: test-no-toolchain-sync-auth-ssl-sharded-cluster
361361
commands:
362362
- func: run server
@@ -370,7 +370,7 @@ tasks:
370370
SSL: ssl
371371
TOPOLOGY: sharded_cluster
372372
TEST_NAME: default_sync
373-
tags: [no-toolchain, sharded_cluster-auth-ssl]
373+
tags: [test-no-toolchain, sharded_cluster-auth-ssl]
374374

375375
# Ocsp tests
376376
- name: test-ocsp-ecdsa-valid-cert-server-does-not-staple-v4.4-python3.9

.evergreen/generated_configs/variants.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ buildvariants:
22
# Alternative hosts tests
33
- name: openssl-1.0.2-rhel7-v5.0-python3.9
44
tasks:
5-
- name: .no-toolchain
5+
- name: .test-no-toolchain
66
display_name: OpenSSL 1.0.2 RHEL7 v5.0 Python3.9
77
run_on:
88
- rhel79-small
@@ -13,7 +13,7 @@ buildvariants:
1313
PYTHON_BINARY: /opt/python/3.9/bin/python3
1414
- name: other-hosts-rhel9-fips-latest
1515
tasks:
16-
- name: .no-toolchain
16+
- name: .test-no-toolchain
1717
display_name: Other hosts RHEL9-FIPS latest
1818
run_on:
1919
- rhel92-fips
@@ -24,7 +24,7 @@ buildvariants:
2424
REQUIRE_FIPS: "1"
2525
- name: other-hosts-rhel8-zseries-latest
2626
tasks:
27-
- name: .no-toolchain
27+
- name: .test-no-toolchain
2828
display_name: Other hosts RHEL8-zseries latest
2929
run_on:
3030
- rhel8-zseries-small
@@ -34,7 +34,7 @@ buildvariants:
3434
NO_EXT: "1"
3535
- name: other-hosts-rhel8-power8-latest
3636
tasks:
37-
- name: .no-toolchain
37+
- name: .test-no-toolchain
3838
display_name: Other hosts RHEL8-POWER8 latest
3939
run_on:
4040
- rhel8-power-small
@@ -44,7 +44,7 @@ buildvariants:
4444
NO_EXT: "1"
4545
- name: other-hosts-rhel8-arm64-latest
4646
tasks:
47-
- name: .no-toolchain
47+
- name: .test-no-toolchain
4848
display_name: Other hosts RHEL8-arm64 latest
4949
run_on:
5050
- rhel82-arm64-small
@@ -54,7 +54,7 @@ buildvariants:
5454
NO_EXT: "1"
5555
- name: other-hosts-amazon2023-latest
5656
tasks:
57-
- name: .no-toolchain
57+
- name: .test-no-toolchain
5858
display_name: Other hosts Amazon2023 latest
5959
run_on:
6060
- amazon2023-arm64-latest-large-m8g
@@ -554,7 +554,7 @@ buildvariants:
554554
# No server tests
555555
- name: no-server-rhel8
556556
tasks:
557-
- name: .no-orchestration
557+
- name: .test-no-orchestration
558558
display_name: No server RHEL8
559559
run_on:
560560
- rhel87-small

.evergreen/scripts/generate_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ def create_aws_auth_variants():
540540
def create_no_server_variants():
541541
host = HOSTS["rhel8"]
542542
name = get_variant_name("No server", host=host)
543-
return [create_variant([".no-orchestration"], name, host=host)]
543+
return [create_variant([".test-no-orchestration"], name, host=host)]
544544

545545

546546
def create_alternative_hosts_variants():
@@ -551,7 +551,7 @@ def create_alternative_hosts_variants():
551551
version = "5.0"
552552
variants.append(
553553
create_variant(
554-
[".no-toolchain"],
554+
[".test-no-toolchain"],
555555
get_variant_name("OpenSSL 1.0.2", host, python=CPYTHONS[0], version=version),
556556
host=host,
557557
python=CPYTHONS[0],
@@ -569,7 +569,7 @@ def create_alternative_hosts_variants():
569569
expansions["REQUIRE_FIPS"] = "1"
570570
variants.append(
571571
create_variant(
572-
[".no-toolchain"],
572+
[".test-no-toolchain"],
573573
display_name=get_variant_name("Other hosts", host, version=version),
574574
batchtime=batchtime,
575575
host=host,
@@ -622,7 +622,7 @@ def create_no_toolchain_tasks():
622622
for topology, sync in zip_cycle(TOPOLOGIES, SYNCS):
623623
auth, ssl = get_standard_auth_ssl(topology)
624624
tags = [
625-
"no-toolchain",
625+
"test-no-toolchain",
626626
f"{topology}-{auth}-{ssl}",
627627
]
628628
expansions = dict(AUTH=auth, SSL=ssl, TOPOLOGY=topology)

0 commit comments

Comments
 (0)