Skip to content

Commit cd33798

Browse files
committed
address failures
1 parent 5ac4969 commit cd33798

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -257,18 +257,6 @@ tasks:
257257
SUB_TEST_NAME: embedded
258258
PYTHON_VERSION: "3.13"
259259
tags: [mod_wsgi, pr]
260-
- name: mod-wsgi-replica-set-python3.14
261-
commands:
262-
- func: run server
263-
vars:
264-
TOPOLOGY: replica_set
265-
PYTHON_VERSION: "3.14"
266-
- func: run tests
267-
vars:
268-
TEST_NAME: mod_wsgi
269-
SUB_TEST_NAME: standalone
270-
PYTHON_VERSION: "3.14"
271-
tags: [mod_wsgi, pr]
272260

273261
# No orchestration tests
274262
- name: test-no-orchestration-python3.10

.evergreen/run-mongodb-aws-ecs-test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ set -o xtrace
2222
# Install python with pip.
2323
PYTHON_VER="python3.10"
2424
apt-get -qq update < /dev/null > /dev/null
25+
apt-get install software-properties-common
2526
add-apt-repository -y 'ppa:deadsnakes/ppa'
2627
apt-get -qq install $PYTHON_VER $PYTHON_VER-venv build-essential $PYTHON_VER-dev -y < /dev/null > /dev/null
2728

.evergreen/scripts/generate_config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,9 @@ def create_mod_wsgi_tasks():
762762
for (test, topology), python in zip_cycle(
763763
product(["standalone", "embedded-mode"], ["standalone", "replica_set"]), CPYTHONS
764764
):
765+
if python == "3.14":
766+
# TODO: PYTHON-5459
767+
continue
765768
if test == "standalone":
766769
task_name = "mod-wsgi-"
767770
else:

.evergreen/scripts/setup_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def handle_test_env() -> None:
274274
write_env("GSSAPI_PRINCIPAL", config["PRINCIPAL"])
275275

276276
if test_name == "doctest":
277-
UV_ARGS.append("--extra docs")
277+
UV_ARGS.append("--with sphinx")
278278

279279
if test_name == "load_balancer":
280280
SINGLE_MONGOS_LB_URI = os.environ.get(

0 commit comments

Comments
 (0)