Skip to content

Commit ac80312

Browse files
committed
fix TEST_NAME handling
1 parent 8a2badb commit ac80312

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8313,7 +8313,7 @@ tasks:
83138313
TOPOLOGY: standalone
83148314
VERSION: "4.0"
83158315
PYTHON_VERSION: "3.9"
8316-
TASK_NAME: default_sync
8316+
TEST_NAME: default_sync
83178317
tags:
83188318
- standard-non-linux
83198319
- server-4.0
@@ -8335,7 +8335,7 @@ tasks:
83358335
TOPOLOGY: replica_set
83368336
VERSION: "4.2"
83378337
PYTHON_VERSION: "3.10"
8338-
TASK_NAME: default_async
8338+
TEST_NAME: default_async
83398339
tags:
83408340
- standard-non-linux
83418341
- server-4.2
@@ -8357,7 +8357,7 @@ tasks:
83578357
TOPOLOGY: sharded_cluster
83588358
VERSION: "4.4"
83598359
PYTHON_VERSION: "3.11"
8360-
TASK_NAME: default_sync
8360+
TEST_NAME: default_sync
83618361
tags:
83628362
- standard-non-linux
83638363
- server-4.4
@@ -8379,7 +8379,7 @@ tasks:
83798379
TOPOLOGY: standalone
83808380
VERSION: "5.0"
83818381
PYTHON_VERSION: "3.12"
8382-
TASK_NAME: default_async
8382+
TEST_NAME: default_async
83838383
tags:
83848384
- standard-non-linux
83858385
- server-5.0
@@ -8401,7 +8401,7 @@ tasks:
84018401
TOPOLOGY: replica_set
84028402
VERSION: "6.0"
84038403
PYTHON_VERSION: "3.13"
8404-
TASK_NAME: default_sync
8404+
TEST_NAME: default_sync
84058405
tags:
84068406
- standard-non-linux
84078407
- server-6.0
@@ -8423,7 +8423,7 @@ tasks:
84238423
TOPOLOGY: sharded_cluster
84248424
VERSION: "7.0"
84258425
PYTHON_VERSION: "3.9"
8426-
TASK_NAME: default_async
8426+
TEST_NAME: default_async
84278427
tags:
84288428
- standard-non-linux
84298429
- server-7.0
@@ -8445,7 +8445,7 @@ tasks:
84458445
TOPOLOGY: standalone
84468446
VERSION: "8.0"
84478447
PYTHON_VERSION: "3.10"
8448-
TASK_NAME: default_sync
8448+
TEST_NAME: default_sync
84498449
tags:
84508450
- standard-non-linux
84518451
- server-8.0
@@ -8467,7 +8467,7 @@ tasks:
84678467
TOPOLOGY: replica_set
84688468
VERSION: rapid
84698469
PYTHON_VERSION: "3.11"
8470-
TASK_NAME: default_async
8470+
TEST_NAME: default_async
84718471
tags:
84728472
- standard-non-linux
84738473
- server-rapid
@@ -8489,7 +8489,7 @@ tasks:
84898489
TOPOLOGY: sharded_cluster
84908490
VERSION: latest
84918491
PYTHON_VERSION: "3.12"
8492-
TASK_NAME: default_sync
8492+
TEST_NAME: default_sync
84938493
tags:
84948494
- standard-non-linux
84958495
- server-latest

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ def create_standard_non_linux_tasks():
624624
server_func = FunctionCall(func="run server", vars=expansions)
625625
test_vars = expansions.copy()
626626
test_vars["PYTHON_VERSION"] = python
627-
test_vars["TASK_NAME"] = f"default_{sync}"
627+
test_vars["TEST_NAME"] = f"default_{sync}"
628628
test_func = FunctionCall(func="run tests", vars=test_vars)
629629
tasks.append(EvgTask(name=name, tags=tags, commands=[server_func, test_func]))
630630
return tasks

0 commit comments

Comments
 (0)