Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .evergreen/generated_configs/variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ buildvariants:
# Encryption tests
- name: encryption-rhel8
tasks:
- name: .test-non-standard
- name: .test-non-standard !.pypy
- name: .test-min-deps
display_name: Encryption RHEL8
run_on:
Expand Down Expand Up @@ -198,7 +198,7 @@ buildvariants:
tags: [encryption_tag]
- name: encryption-crypt_shared-rhel8
tasks:
- name: .test-non-standard
- name: .test-non-standard !.pypy
- name: .test-min-deps
display_name: Encryption crypt_shared RHEL8
run_on:
Expand Down Expand Up @@ -232,7 +232,7 @@ buildvariants:
tags: [encryption_tag]
- name: encryption-pyopenssl-rhel8
tasks:
- name: .test-non-standard
- name: .test-non-standard !.pypy
display_name: Encryption PyOpenSSL RHEL8
run_on:
- rhel87-small
Expand Down
5 changes: 3 additions & 2 deletions .evergreen/scripts/generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ def get_encryption_expansions(encryption):
):
expansions = get_encryption_expansions(encryption)
display_name = get_variant_name(encryption, host, **expansions)
tasks = [".test-non-standard", ".test-min-deps"]
# TODO: PYTHON-5612
tasks = [".test-non-standard !.pypy", ".test-min-deps"]
if host != "rhel8":
tasks = [".test-non-standard !.pypy"]
variant = create_variant(
Expand All @@ -147,7 +148,7 @@ def get_encryption_expansions(encryption):
expansions = get_encryption_expansions(encryption)
display_name = get_variant_name(encryption, host, **expansions)
variant = create_variant(
[".test-non-standard"],
[".test-non-standard !.pypy"], # TODO: PYTHON-5612
display_name,
host=host,
expansions=expansions,
Expand Down
Loading