Skip to content

Commit 6513aa0

Browse files
committed
clean up tasks
1 parent 69ea195 commit 6513aa0

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,13 @@ tasks:
777777
VERSION: latest
778778
- func: run tests
779779
tags: [compression, latest]
780+
- name: test-compression-latest-python3.9-no-c
781+
commands:
782+
- func: run server
783+
vars:
784+
VERSION: latest
785+
- func: run tests
786+
tags: [compression, latest]
780787
- name: test-compression-latest-python3.13-no-c
781788
commands:
782789
- func: run server

.evergreen/scripts/generate_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -852,14 +852,14 @@ def create_compression_tasks():
852852
tasks.append(EvgTask(name=name, tags=tags, commands=[server_func, test_func]))
853853

854854
# Test latest with other variants.
855-
for python, c_ext in product([CPYTHONS[-1], PYPYS[-1]], C_EXTS):
855+
for python, c_ext in product([*MIN_MAX_PYTHON, PYPYS[-1]], C_EXTS):
856856
version = "latest"
857857
tags = ["compression", version]
858858
expansions = dict()
859+
if python in [CPYTHONS[0], PYPYS[-1]] and c_ext == C_EXTS[1]:
860+
continue
859861
if python != PYPYS[-1]:
860862
handle_c_ext(c_ext, expansions)
861-
elif c_ext == C_EXTS[1]:
862-
continue
863863
name = get_task_name("test-compression", python=python, version=version, **expansions)
864864
server_func = FunctionCall(func="run server", vars=dict(VERSION=version))
865865
test_func = FunctionCall(func="run tests")

0 commit comments

Comments
 (0)