Skip to content

Commit f7c61d3

Browse files
committed
fix win tests
1 parent 4248901 commit f7c61d3

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.evergreen/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2761,7 +2761,7 @@ buildvariants:
27612761
AUTH: auth
27622762
SSL: ssl
27632763
TEST_SUITES: default
2764-
PYTHON_BINARY: C:/python/Python 39/python.exe
2764+
PYTHON_BINARY: C:/python/Python39/python.exe
27652765
- name: test-win64-py-3.9-auth-ssl-async
27662766
tasks:
27672767
- name: .sharded_cluster
@@ -2772,7 +2772,7 @@ buildvariants:
27722772
AUTH: auth
27732773
SSL: ssl
27742774
TEST_SUITES: default_async
2775-
PYTHON_BINARY: C:/python/Python 39/python.exe
2775+
PYTHON_BINARY: C:/python/Python39/python.exe
27762776
- name: test-win64-py-3.9-noauth-nossl-sync
27772777
tasks:
27782778
- name: .sharded_cluster
@@ -2783,7 +2783,7 @@ buildvariants:
27832783
AUTH: noauth
27842784
SSL: nossl
27852785
TEST_SUITES: default
2786-
PYTHON_BINARY: C:/python/Python 39/python.exe
2786+
PYTHON_BINARY: C:/python/Python39/python.exe
27872787
- name: test-win64-py-3.9-noauth-nossl-async
27882788
tasks:
27892789
- name: .sharded_cluster
@@ -2794,7 +2794,7 @@ buildvariants:
27942794
AUTH: noauth
27952795
SSL: nossl
27962796
TEST_SUITES: default_async
2797-
PYTHON_BINARY: C:/python/Python 39/python.exe
2797+
PYTHON_BINARY: C:/python/Python39/python.exe
27982798
- name: test-win64-py-3.13-auth-ssl-sync
27992799
tasks:
28002800
- name: .sharded_cluster
@@ -2805,7 +2805,7 @@ buildvariants:
28052805
AUTH: auth
28062806
SSL: ssl
28072807
TEST_SUITES: default
2808-
PYTHON_BINARY: C:/python/Python 313/python.exe
2808+
PYTHON_BINARY: C:/python/Python313/python.exe
28092809
- name: test-win64-py-3.13-auth-ssl-async
28102810
tasks:
28112811
- name: .sharded_cluster
@@ -2816,7 +2816,7 @@ buildvariants:
28162816
AUTH: auth
28172817
SSL: ssl
28182818
TEST_SUITES: default_async
2819-
PYTHON_BINARY: C:/python/Python 313/python.exe
2819+
PYTHON_BINARY: C:/python/Python313/python.exe
28202820
- name: test-win64-py-3.13-noauth-nossl-sync
28212821
tasks:
28222822
- name: .sharded_cluster
@@ -2827,7 +2827,7 @@ buildvariants:
28272827
AUTH: noauth
28282828
SSL: nossl
28292829
TEST_SUITES: default
2830-
PYTHON_BINARY: C:/python/Python 313/python.exe
2830+
PYTHON_BINARY: C:/python/Python313/python.exe
28312831
- name: test-win64-py-3.13-noauth-nossl-async
28322832
tasks:
28332833
- name: .sharded_cluster
@@ -2838,7 +2838,7 @@ buildvariants:
28382838
AUTH: noauth
28392839
SSL: nossl
28402840
TEST_SUITES: default_async
2841-
PYTHON_BINARY: C:/python/Python 313/python.exe
2841+
PYTHON_BINARY: C:/python/Python313/python.exe
28422842

28432843
# Server tests for Windows (32-bit).
28442844
- name: test-win64-32-bit-py3.9-auth-ssl-sync

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def create_server_variants() -> list[BuildVariant]:
217217
for prefix, base, (auth, ssl), sync in product(
218218
["", "32-bit "], MIN_MAX_PYTHON, AUTH_SSLS, SYNCS
219219
):
220-
python = f"{prefix} {base}"
220+
python = f"{prefix}{base}"
221221
test_suite = "default" if sync == "sync" else "default_async"
222222
expansions = dict(AUTH=auth, SSL=ssl, TEST_SUITES=test_suite)
223223
display_name = get_display_name("Test", host, python=python, **expansions)

0 commit comments

Comments
 (0)