Skip to content

Commit 2ee45cc

Browse files
committed
cleanup
1 parent a413ada commit 2ee45cc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ tasks:
101101
PYTHON_VERSION: "3.10"
102102
AWS_ROLE_SESSION_NAME: test
103103
tags: [auth-aws, auth-aws-web-identity]
104-
- name: test-auth-aws-eks
104+
- name: test-auth-aws-eks-latest
105105
commands:
106106
- func: assume ec2 role
107107
- func: run tests
108108
vars:
109109
TEST_NAME: auth_aws
110110
SUB_TEST_NAME: eks
111-
tags: [auth-aws, auth-aws-eks-latest]
112-
- name: test-auth-aws-ecs
111+
tags: [auth-aws, auth-aws-eks]
112+
- name: test-auth-aws-ecs-latest
113113
commands:
114114
- func: assume ec2 role
115115
- func: run server
@@ -119,7 +119,7 @@ tasks:
119119
vars:
120120
TEST_NAME: auth_aws
121121
SUB_TEST_NAME: ecs
122-
tags: [auth-aws, auth-aws-ecs-latest]
122+
tags: [auth-aws, auth-aws-ecs]
123123

124124
# Backport pr tests
125125
- name: backport-pr

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,8 +762,8 @@ def create_aws_tasks():
762762
tasks.append(EvgTask(name=name, tags=tags, commands=funcs))
763763

764764
for test_type in ["eks", "ecs"]:
765-
tags = ["auth-aws", f"auth-aws-{test_type}-latest"]
766-
base_name = f"test-auth-aws-{test_type}"
765+
tags = ["auth-aws", f"auth-aws-{test_type}"]
766+
base_name = f"test-auth-aws-{test_type}-latest"
767767
name = get_task_name(base_name)
768768
test_vars = dict(TEST_NAME="auth_aws", SUB_TEST_NAME=test_type)
769769
test_func = FunctionCall(func="run tests", vars=test_vars)

0 commit comments

Comments
 (0)