Skip to content

Commit fc74b17

Browse files
committed
PYTHON-5774 Add no-orchestration tasks to test-win64 variant
Run mock-based daemon tests (including Windows-specific ones) on the Win64 Evergreen variant.
1 parent b0c9e08 commit fc74b17

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

.evergreen/generated_configs/variants.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,7 @@ buildvariants:
615615
- name: test-win64
616616
tasks:
617617
- name: .test-standard !.pypy
618+
- name: .test-no-orchestration !.pypy
618619
display_name: "* Test Win64"
619620
run_on:
620621
- windows-2022-latest-small

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ def create_standard_nonlinux_variants() -> list[BuildVariant]:
9797
tasks = [
9898
f".test-standard !.pypy .server-{version}" for version in get_versions_from("6.0")
9999
]
100+
if host_name == "win64":
101+
tasks.append(".test-no-orchestration !.pypy")
100102
host = HOSTS[host_name]
101103
tags = ["standard-non-linux"]
102104
expansions = dict()

0 commit comments

Comments
 (0)