Skip to content

Commit 1ff31d7

Browse files
committed
run mod_wsgi tasks
1 parent 6d32211 commit 1ff31d7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ tasks:
211211
TEST_NAME: mod_wsgi
212212
SUB_TEST_NAME: standalone
213213
PYTHON_VERSION: "3.9"
214-
tags: [mod_wsgi]
214+
tags: [mod_wsgi, pr]
215215
- name: mod-wsgi-embedded-mode-replica-set-python3.10
216216
commands:
217217
- func: run server
@@ -223,7 +223,7 @@ tasks:
223223
TEST_NAME: mod_wsgi
224224
SUB_TEST_NAME: embedded
225225
PYTHON_VERSION: "3.10"
226-
tags: [mod_wsgi]
226+
tags: [mod_wsgi, pr]
227227
- name: mod-wsgi-replica-set-python3.11
228228
commands:
229229
- func: run server
@@ -235,7 +235,7 @@ tasks:
235235
TEST_NAME: mod_wsgi
236236
SUB_TEST_NAME: standalone
237237
PYTHON_VERSION: "3.11"
238-
tags: [mod_wsgi]
238+
tags: [mod_wsgi, pr]
239239
- name: mod-wsgi-embedded-mode-replica-set-python3.12
240240
commands:
241241
- func: run server
@@ -247,7 +247,7 @@ tasks:
247247
TEST_NAME: mod_wsgi
248248
SUB_TEST_NAME: embedded
249249
PYTHON_VERSION: "3.12"
250-
tags: [mod_wsgi]
250+
tags: [mod_wsgi, pr]
251251
- name: mod-wsgi-replica-set-python3.13
252252
commands:
253253
- func: run server
@@ -259,7 +259,7 @@ tasks:
259259
TEST_NAME: mod_wsgi
260260
SUB_TEST_NAME: standalone
261261
PYTHON_VERSION: "3.13"
262-
tags: [mod_wsgi]
262+
tags: [mod_wsgi, pr]
263263

264264
# No orchestration tests
265265
- name: test-no-orchestration-python3.9

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ def create_mod_wsgi_tasks():
775775
server_func = FunctionCall(func="run server", vars=server_vars)
776776
vars = dict(TEST_NAME="mod_wsgi", SUB_TEST_NAME=test.split("-")[0], PYTHON_VERSION=python)
777777
test_func = FunctionCall(func="run tests", vars=vars)
778-
tags = ["mod_wsgi"]
778+
tags = ["mod_wsgi", "pr"]
779779
commands = [server_func, test_func]
780780
tasks.append(EvgTask(name=task_name, tags=tags, commands=commands))
781781
return tasks

0 commit comments

Comments
 (0)