Skip to content

Commit 0af8f27

Browse files
committed
fix tasks
1 parent 10b0f01 commit 0af8f27

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,6 +1122,7 @@ buildvariants:
11221122
- name: pyopenssl-macos-py3.9
11231123
tasks:
11241124
- name: .replica_set .noauth .nossl
1125+
- name: .7.0 .noauth .nossl
11251126
display_name: PyOpenSSL macOS py3.9
11261127
run_on:
11271128
- macos-14
@@ -1131,7 +1132,8 @@ buildvariants:
11311132
PYTHON_BINARY: /Library/Frameworks/Python.Framework/Versions/3.9/bin/python3
11321133
- name: pyopenssl-rhel8-py3.10
11331134
tasks:
1134-
- name: .replica_set .auth .nossl
1135+
- name: .replica_set .auth .ssl
1136+
- name: .7.0 .auth .ssl
11351137
display_name: PyOpenSSL RHEL8 py3.10
11361138
run_on:
11371139
- rhel87-small
@@ -1141,7 +1143,8 @@ buildvariants:
11411143
PYTHON_BINARY: /opt/python/3.10/bin/python3
11421144
- name: pyopenssl-rhel8-py3.11
11431145
tasks:
1144-
- name: .replica_set .auth .nossl
1146+
- name: .replica_set .auth .ssl
1147+
- name: .7.0 .auth .ssl
11451148
display_name: PyOpenSSL RHEL8 py3.11
11461149
run_on:
11471150
- rhel87-small
@@ -1151,7 +1154,8 @@ buildvariants:
11511154
PYTHON_BINARY: /opt/python/3.11/bin/python3
11521155
- name: pyopenssl-rhel8-py3.12
11531156
tasks:
1154-
- name: .replica_set .auth .nossl
1157+
- name: .replica_set .auth .ssl
1158+
- name: .7.0 .auth .ssl
11551159
display_name: PyOpenSSL RHEL8 py3.12
11561160
run_on:
11571161
- rhel87-small
@@ -1161,7 +1165,8 @@ buildvariants:
11611165
PYTHON_BINARY: /opt/python/3.12/bin/python3
11621166
- name: pyopenssl-win64-py3.13
11631167
tasks:
1164-
- name: .replica_set .auth .nossl
1168+
- name: .replica_set .auth .ssl
1169+
- name: .7.0 .auth .ssl
11651170
display_name: PyOpenSSL Win64 py3.13
11661171
run_on:
11671172
- windows-64-vsMulti-small
@@ -1171,7 +1176,8 @@ buildvariants:
11711176
PYTHON_BINARY: C:/python/Python313/python.exe
11721177
- name: pyopenssl-rhel8-pypy3.9
11731178
tasks:
1174-
- name: .replica_set .auth .nossl
1179+
- name: .replica_set .auth .ssl
1180+
- name: .7.0 .auth .ssl
11751181
display_name: PyOpenSSL RHEL8 pypy3.9
11761182
run_on:
11771183
- rhel87-small
@@ -1181,7 +1187,8 @@ buildvariants:
11811187
PYTHON_BINARY: /opt/python/pypy3.9/bin/python3
11821188
- name: pyopenssl-rhel8-pypy3.10
11831189
tasks:
1184-
- name: .replica_set .auth .nossl
1190+
- name: .replica_set .auth .ssl
1191+
- name: .7.0 .auth .ssl
11851192
display_name: PyOpenSSL RHEL8 pypy3.10
11861193
run_on:
11871194
- rhel87-small

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,7 @@ def create_pyopenssl_variants():
449449
for python in ALL_PYTHONS:
450450
# Only test "noauth" with min python.
451451
auth = "noauth" if python == CPYTHONS[0] else "auth"
452+
ssl = "nossl" if auth == "noauth" else "ssl"
452453
if python == CPYTHONS[0]:
453454
host = "macos"
454455
elif python == CPYTHONS[-1]:
@@ -458,7 +459,7 @@ def create_pyopenssl_variants():
458459

459460
display_name = get_display_name(base_name, host, python=python)
460461
variant = create_variant(
461-
[f".replica_set .{auth} .nossl"],
462+
[f".replica_set .{auth} .{ssl}", f".7.0 .{auth} .{ssl}"],
462463
display_name,
463464
python=python,
464465
host=host,

0 commit comments

Comments
 (0)