Skip to content

Commit e429e09

Browse files
committed
fix task names
1 parent ec12424 commit e429e09

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
tasks:
22
# Kms tests
3-
- name: test-gcp
3+
- name: test-gcpkms
44
commands:
55
- func: run tests
66
vars:
77
TEST_NAME: kms
88
SUB_TEST_NAME: gcp
9-
- name: test-gcp-fail
9+
- name: test-gcpkms-fail
1010
commands:
1111
- func: bootstrap mongo-orchestration
1212
- func: run tests
1313
vars:
1414
TEST_NAME: kms
1515
SUB_TEST_NAME: gcp fail
16-
- name: test-azure
16+
- name: test-azurekms
1717
commands:
1818
- func: run tests
1919
vars:
2020
TEST_NAME: kms
2121
SUB_TEST_NAME: azure
22-
- name: test-azure-fail
22+
- name: test-azurekms-fail
2323
commands:
2424
- func: bootstrap mongo-orchestration
2525
- func: run tests

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ def create_kms_tasks():
839839
tasks = []
840840
for kms_type in ["gcp", "azure"]:
841841
for success in [True, False]:
842-
name = f"test-{kms_type}"
842+
name = f"test-{kms_type}kms"
843843
sub_test_name = kms_type
844844
if not success:
845845
name += "-fail"

0 commit comments

Comments
 (0)