Skip to content

Commit dd05e5b

Browse files
committed
add server-version tag
1 parent 3ce2dad commit dd05e5b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tasks:
2121
TEST_NAME: auth_aws
2222
SUB_TEST_NAME: regular
2323
PYTHON_VERSION: "3.9"
24-
tags: [auth-aws, auth-aws-regular]
24+
tags: [auth-aws, auth-aws-regular, server-4.4]
2525
- name: test-auth-aws-5.0-assume-role-python3.10
2626
commands:
2727
- func: run server
@@ -34,7 +34,7 @@ tasks:
3434
TEST_NAME: auth_aws
3535
SUB_TEST_NAME: assume-role
3636
PYTHON_VERSION: "3.10"
37-
tags: [auth-aws, auth-aws-assume-role]
37+
tags: [auth-aws, auth-aws-assume-role, server-5.0]
3838
- name: test-auth-aws-6.0-ec2-python3.11
3939
commands:
4040
- func: run server
@@ -47,7 +47,7 @@ tasks:
4747
TEST_NAME: auth_aws
4848
SUB_TEST_NAME: ec2
4949
PYTHON_VERSION: "3.11"
50-
tags: [auth-aws, auth-aws-ec2]
50+
tags: [auth-aws, auth-aws-ec2, server-6.0]
5151
- name: test-auth-aws-7.0-env-creds-python3.12
5252
commands:
5353
- func: run server
@@ -60,7 +60,7 @@ tasks:
6060
TEST_NAME: auth_aws
6161
SUB_TEST_NAME: env-creds
6262
PYTHON_VERSION: "3.12"
63-
tags: [auth-aws, auth-aws-env-creds]
63+
tags: [auth-aws, auth-aws-env-creds, server-7.0]
6464
- name: test-auth-aws-8.0-session-creds-python3.13
6565
commands:
6666
- func: run server
@@ -73,7 +73,7 @@ tasks:
7373
TEST_NAME: auth_aws
7474
SUB_TEST_NAME: session-creds
7575
PYTHON_VERSION: "3.13"
76-
tags: [auth-aws, auth-aws-session-creds]
76+
tags: [auth-aws, auth-aws-session-creds, server-8.0]
7777
- name: test-auth-aws-rapid-web-identity-python3.9
7878
commands:
7979
- func: run server
@@ -86,7 +86,7 @@ tasks:
8686
TEST_NAME: auth_aws
8787
SUB_TEST_NAME: web-identity
8888
PYTHON_VERSION: "3.9"
89-
tags: [auth-aws, auth-aws-web-identity]
89+
tags: [auth-aws, auth-aws-web-identity, server-rapid]
9090
- name: test-auth-aws-latest-web-identity-session-name-python3.10
9191
commands:
9292
- func: run server
@@ -100,7 +100,7 @@ tasks:
100100
SUB_TEST_NAME: web-identity
101101
PYTHON_VERSION: "3.10"
102102
AWS_ROLE_SESSION_NAME: test
103-
tags: [auth-aws, auth-aws-web-identity]
103+
tags: [auth-aws, auth-aws-web-identity, server-latest]
104104
- name: test-auth-aws-eks
105105
commands:
106106
- func: assume ec2 role

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ def create_aws_tasks():
755755
orig_test_type = test_type
756756
if test_type == "web-identity-session-name":
757757
test_type = "web-identity" # noqa:PLW2901
758-
tags = [*base_tags, f"auth-aws-{test_type}"]
758+
tags = [*base_tags, f"auth-aws-{test_type}", f"server-{version}"]
759759
test_vars = dict(TEST_NAME="auth_aws", SUB_TEST_NAME=test_type, PYTHON_VERSION=python)
760760
if orig_test_type == "web-identity-session-name":
761761
test_vars["AWS_ROLE_SESSION_NAME"] = "test"

0 commit comments

Comments
 (0)