File tree 2 files changed +23
-12
lines changed
2 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -729,8 +729,8 @@ buildvariants:
729
729
# Pyopenssl tests
730
730
- name : pyopenssl-macos-python3.9
731
731
tasks :
732
- - name : .replica_set .noauth .nossl .sync
733
- - name : .7.0 .noauth .nossl .sync
732
+ - name : .replica_set .noauth .nossl .sync_async
733
+ - name : .7.0 .noauth .nossl .sync_async
734
734
display_name : PyOpenSSL macOS Python3.9
735
735
run_on :
736
736
- macos-14
@@ -773,8 +773,8 @@ buildvariants:
773
773
PYTHON_BINARY : /opt/python/3.12/bin/python3
774
774
- name : pyopenssl-win64-python3.13
775
775
tasks :
776
- - name : .replica_set .auth .ssl .sync
777
- - name : .7.0 .auth .ssl .sync
776
+ - name : .replica_set .auth .ssl .sync_async
777
+ - name : .7.0 .auth .ssl .sync_async
778
778
display_name : PyOpenSSL Win64 Python3.13
779
779
run_on :
780
780
- windows-64-vsMulti-small
Original file line number Diff line number Diff line change @@ -262,14 +262,25 @@ def create_pyopenssl_variants():
262
262
host = DEFAULT_HOST
263
263
264
264
display_name = get_variant_name (base_name , host , python = python )
265
- variant = create_variant (
266
- [f".replica_set .{ auth } .{ ssl } .sync" , f".7.0 .{ auth } .{ ssl } .sync" ],
267
- display_name ,
268
- python = python ,
269
- host = host ,
270
- expansions = expansions ,
271
- batchtime = batchtime ,
272
- )
265
+ # only need to run some on async
266
+ if python in (CPYTHONS [0 ], CPYTHONS [- 1 ]):
267
+ variant = create_variant (
268
+ [f".replica_set .{ auth } .{ ssl } .sync_async" , f".7.0 .{ auth } .{ ssl } .sync_async" ],
269
+ display_name ,
270
+ python = python ,
271
+ host = host ,
272
+ expansions = expansions ,
273
+ batchtime = batchtime ,
274
+ )
275
+ else :
276
+ variant = create_variant (
277
+ [f".replica_set .{ auth } .{ ssl } .sync" , f".7.0 .{ auth } .{ ssl } .sync" ],
278
+ display_name ,
279
+ python = python ,
280
+ host = host ,
281
+ expansions = expansions ,
282
+ batchtime = batchtime ,
283
+ )
273
284
variants .append (variant )
274
285
275
286
return variants
You can’t perform that action at this time.
0 commit comments