Skip to content

Commit 12a4830

Browse files
committed
restore compat with python 3.9 and pypy 3.9
1 parent 73383ef commit 12a4830

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ tasks:
243243
tags: [test-min-deps, sharded_cluster-auth-ssl]
244244

245245
# Min support tests
246-
- name: test-min-support-python3.9
246+
- name: test-min-support-python3.9-standalone-noauth-nossl
247247
commands:
248248
- func: run server
249249
- func: run tests
@@ -253,7 +253,7 @@ tasks:
253253
SSL: nossl
254254
TOPOLOGY: standalone
255255
tags: [test-min-support]
256-
- name: test-min-support-python3.9
256+
- name: test-min-support-python3.9-replica-set-noauth-ssl
257257
commands:
258258
- func: run server
259259
- func: run tests
@@ -263,7 +263,7 @@ tasks:
263263
SSL: ssl
264264
TOPOLOGY: replica_set
265265
tags: [test-min-support]
266-
- name: test-min-support-python3.9
266+
- name: test-min-support-python3.9-sharded-cluster-auth-ssl
267267
commands:
268268
- func: run server
269269
- func: run tests
@@ -273,7 +273,7 @@ tasks:
273273
SSL: ssl
274274
TOPOLOGY: sharded_cluster
275275
tags: [test-min-support]
276-
- name: test-min-support-pypy3.9
276+
- name: test-min-support-pypy3.9-standalone-noauth-nossl
277277
commands:
278278
- func: run server
279279
- func: run tests
@@ -283,7 +283,7 @@ tasks:
283283
SSL: nossl
284284
TOPOLOGY: standalone
285285
tags: [test-min-support]
286-
- name: test-min-support-pypy3.9
286+
- name: test-min-support-pypy3.9-replica-set-noauth-ssl
287287
commands:
288288
- func: run server
289289
- func: run tests
@@ -293,7 +293,7 @@ tasks:
293293
SSL: ssl
294294
TOPOLOGY: replica_set
295295
tags: [test-min-support]
296-
- name: test-min-support-pypy3.9
296+
- name: test-min-support-pypy3.9-sharded-cluster-auth-ssl
297297
commands:
298298
- func: run server
299299
- func: run tests
@@ -303,7 +303,7 @@ tasks:
303303
SSL: ssl
304304
TOPOLOGY: sharded_cluster
305305
tags: [test-min-support]
306-
- name: test-min-support-pypy3.11
306+
- name: test-min-support-pypy3.11-standalone-noauth-nossl
307307
commands:
308308
- func: run server
309309
- func: run tests
@@ -313,7 +313,7 @@ tasks:
313313
SSL: nossl
314314
TOPOLOGY: standalone
315315
tags: [test-min-support]
316-
- name: test-min-support-pypy3.11
316+
- name: test-min-support-pypy3.11-replica-set-noauth-ssl
317317
commands:
318318
- func: run server
319319
- func: run tests
@@ -323,7 +323,7 @@ tasks:
323323
SSL: ssl
324324
TOPOLOGY: replica_set
325325
tags: [test-min-support]
326-
- name: test-min-support-pypy3.11
326+
- name: test-min-support-pypy3.11-sharded-cluster-auth-ssl
327327
commands:
328328
- func: run server
329329
- func: run tests

.evergreen/scripts/generate_config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,9 @@ def create_min_support_tasks():
912912
auth, ssl = get_standard_auth_ssl(topology)
913913
vars = dict(UV_PYTHON=python, AUTH=auth, SSL=ssl, TOPOLOGY=topology)
914914
test_func = FunctionCall(func="run tests", vars=vars)
915-
task_name = get_task_name("test-min-support", python=python)
915+
task_name = get_task_name(
916+
"test-min-support", python=python, topology=topology, auth=auth, ssl=ssl
917+
)
916918
tags = ["test-min-support"]
917919
commands = [server_func, test_func]
918920
tasks.append(EvgTask(name=task_name, tags=tags, commands=commands))

0 commit comments

Comments
 (0)