Skip to content

Commit b0dc937

Browse files
committed
update min var tests
1 parent 92b47cf commit b0dc937

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
@@ -210,7 +210,7 @@ tasks:
210210
tags: [pr]
211211

212212
# Min deps tests
213-
- name: test-standard-python3.9-sync-noauth-nossl-standalone
213+
- name: test-min-deps-python3.9-sync-noauth-nossl-standalone
214214
commands:
215215
- func: run server
216216
vars:
@@ -224,7 +224,7 @@ tasks:
224224
TOPOLOGY: standalone
225225
TEST_MIN_DEPS: "1"
226226
tags: [test-min-deps, standalone-noauth-nossl]
227-
- name: test-standard-python3.9-sync-noauth-ssl-replica-set
227+
- name: test-min-deps-python3.9-sync-noauth-ssl-replica-set
228228
commands:
229229
- func: run server
230230
vars:
@@ -238,7 +238,7 @@ tasks:
238238
TOPOLOGY: replica_set
239239
TEST_MIN_DEPS: "1"
240240
tags: [test-min-deps, replica_set-noauth-ssl]
241-
- name: test-standard-python3.9-sync-auth-ssl-sharded-cluster
241+
- name: test-min-deps-python3.9-sync-auth-ssl-sharded-cluster
242242
commands:
243243
- func: run server
244244
vars:

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ def create_min_deps_tasks():
639639
server_func = FunctionCall(func="run server", vars=expansions)
640640
test_vars = expansions.copy()
641641
test_vars["TEST_MIN_DEPS"] = "1"
642-
name = get_task_name("test-standard", python=CPYTHONS[0], sync="sync", **test_vars)
642+
name = get_task_name("test-min-deps", python=CPYTHONS[0], sync="sync", **test_vars)
643643
test_func = FunctionCall(func="run tests", vars=test_vars)
644644
tasks.append(EvgTask(name=name, tags=tags, commands=[server_func, test_func]))
645645
return tasks

0 commit comments

Comments
 (0)