File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -101,15 +101,15 @@ tasks:
101
101
PYTHON_VERSION : " 3.10"
102
102
AWS_ROLE_SESSION_NAME : test
103
103
tags : [auth-aws, auth-aws-web-identity]
104
- - name : test-auth-aws-eks
104
+ - name : test-auth-aws-eks-latest
105
105
commands :
106
106
- func : assume ec2 role
107
107
- func : run tests
108
108
vars :
109
109
TEST_NAME : auth_aws
110
110
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
113
113
commands :
114
114
- func : assume ec2 role
115
115
- func : run server
@@ -119,7 +119,7 @@ tasks:
119
119
vars :
120
120
TEST_NAME : auth_aws
121
121
SUB_TEST_NAME : ecs
122
- tags : [auth-aws, auth-aws-ecs-latest ]
122
+ tags : [auth-aws, auth-aws-ecs]
123
123
124
124
# Backport pr tests
125
125
- name : backport-pr
Original file line number Diff line number Diff line change @@ -762,8 +762,8 @@ def create_aws_tasks():
762
762
tasks .append (EvgTask (name = name , tags = tags , commands = funcs ))
763
763
764
764
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 "
767
767
name = get_task_name (base_name )
768
768
test_vars = dict (TEST_NAME = "auth_aws" , SUB_TEST_NAME = test_type )
769
769
test_func = FunctionCall (func = "run tests" , vars = test_vars )
You can’t perform that action at this time.
0 commit comments