Skip to content

Commit 7491eb5

Browse files
committed
update display
1 parent 2ee45cc commit 7491eb5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 2 additions & 2 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-latest
104+
- name: test-auth-aws-latest-eks-python3.11
105105
commands:
106106
- func: assume ec2 role
107107
- func: run tests
108108
vars:
109109
TEST_NAME: auth_aws
110110
SUB_TEST_NAME: eks
111111
tags: [auth-aws, auth-aws-eks]
112-
- name: test-auth-aws-ecs-latest
112+
- name: test-auth-aws-latest-ecs-python3.11
113113
commands:
114114
- func: assume ec2 role
115115
- func: run server

.evergreen/scripts/generate_config.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -763,8 +763,9 @@ def create_aws_tasks():
763763

764764
for test_type in ["eks", "ecs"]:
765765
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")
768769
test_vars = dict(TEST_NAME="auth_aws", SUB_TEST_NAME=test_type)
769770
test_func = FunctionCall(func="run tests", vars=test_vars)
770771
funcs = [assume_func, test_func]

.evergreen/scripts/run-aws-container-test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ fi
2020
set -o xtrace
2121

2222
# Install python with pip.
23+
# Keep this version in sync with the one in "generate_config.py".
2324
PYTHON_VER="python3.11"
2425
apt-get -qq update < /dev/null > /dev/null
2526
apt-get -qq install software-properties-common -y < /dev/null > /dev/null # needed for apt-add-repository

0 commit comments

Comments
 (0)