Skip to content

Commit df4ba6e

Browse files
committed
mongodb and pythonv ver handling
1 parent 0d2b4e3 commit df4ba6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ tasks:
723723
tags: [doctests]
724724

725725
# Enterprise auth tests
726-
- name: test-enterprise-auth-{python}
726+
- name: test-enterprise-auth-3.9
727727
commands:
728728
- func: run server
729729
vars:
@@ -737,7 +737,7 @@ tasks:
737737
AUTH: auth
738738
PYTHON_VERSION: "3.9"
739739
tags: [enterprise_auth]
740-
- name: test-enterprise-auth-{python}
740+
- name: test-enterprise-auth-3.13
741741
commands:
742742
- func: run server
743743
vars:
@@ -751,7 +751,7 @@ tasks:
751751
AUTH: auth
752752
PYTHON_VERSION: "3.13"
753753
tags: [enterprise_auth]
754-
- name: test-enterprise-auth-{python}
754+
- name: test-enterprise-auth-pypy3.10
755755
commands:
756756
- func: run server
757757
vars:

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ def create_enterprise_auth_tasks():
962962
server_func = FunctionCall(func="run server", vars=vars)
963963
assume_func = FunctionCall(func="assume ec2 role")
964964
test_func = FunctionCall(func="run tests", vars=vars)
965-
task_name = "test-enterprise-auth-{python}"
965+
task_name = f"test-enterprise-auth-{python}"
966966
tags = ["enterprise_auth"]
967967
if python in PYPYS:
968968
tags += ["pypy"]

0 commit comments

Comments
 (0)