Skip to content

Commit f5d399b

Browse files
committed
No free-threaded mod_wsgi
1 parent 347a0ac commit f5d399b

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -313,18 +313,6 @@ tasks:
313313
SUB_TEST_NAME: standalone
314314
PYTHON_VERSION: "3.14"
315315
tags: [mod_wsgi, pr]
316-
- name: mod-wsgi-embedded-mode-replica-set-python3.14t
317-
commands:
318-
- func: run server
319-
vars:
320-
TOPOLOGY: replica_set
321-
PYTHON_VERSION: 3.14t
322-
- func: run tests
323-
vars:
324-
TEST_NAME: mod_wsgi
325-
SUB_TEST_NAME: embedded
326-
PYTHON_VERSION: 3.14t
327-
tags: [mod_wsgi, pr, free-threaded]
328316

329317
# No orchestration tests
330318
- name: test-no-orchestration-python3.10

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,8 @@ def create_mod_wsgi_tasks():
765765
for (test, topology), python in zip_cycle(
766766
product(["standalone", "embedded-mode"], ["standalone", "replica_set"]), CPYTHONS
767767
):
768+
if "t" in python:
769+
continue
768770
if test == "standalone":
769771
task_name = "mod-wsgi-"
770772
else:
@@ -777,8 +779,6 @@ def create_mod_wsgi_tasks():
777779
test_func = FunctionCall(func="run tests", vars=vars)
778780
tags = ["mod_wsgi", "pr"]
779781
commands = [server_func, test_func]
780-
if "t" in python:
781-
tags.append("free-threaded")
782782
tasks.append(EvgTask(name=task_name, tags=tags, commands=commands))
783783
return tasks
784784

0 commit comments

Comments
 (0)