File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
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-latest
104
+ - name : test-auth-aws-latest- eks-python3.11
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
111
tags : [auth-aws, auth-aws-eks]
112
- - name : test-auth-aws-ecs-latest
112
+ - name : test-auth-aws-latest- ecs-python3.11
113
113
commands :
114
114
- func : assume ec2 role
115
115
- func : run server
Original file line number Diff line number Diff line change @@ -763,8 +763,9 @@ def create_aws_tasks():
763
763
764
764
for test_type in ["eks" , "ecs" ]:
765
765
tags = ["auth-aws" , f"auth-aws-{ test_type } " ]
766
- base_name = f"test-auth-aws-{ test_type } -latest"
767
- name = get_task_name (base_name )
766
+ base_name = f"test-auth-aws-latest-{ test_type } "
767
+ # Keep this version in sync with the one in "run-aws-container-test.sh".
768
+ name = get_task_name (base_name , python = "3.11" )
768
769
test_vars = dict (TEST_NAME = "auth_aws" , SUB_TEST_NAME = test_type )
769
770
test_func = FunctionCall (func = "run tests" , vars = test_vars )
770
771
funcs = [assume_func , test_func ]
Original file line number Diff line number Diff line change 20
20
set -o xtrace
21
21
22
22
# Install python with pip.
23
+ # Keep this version in sync with the one in "generate_config.py".
23
24
PYTHON_VER=" python3.11"
24
25
apt-get -qq update < /dev/null > /dev/null
25
26
apt-get -qq install software-properties-common -y < /dev/null > /dev/null # needed for apt-add-repository
You can’t perform that action at this time.
0 commit comments