Skip to content

PYTHON-5372 Convert Enterprise Auth Variants to use common tasks #2330

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
May 2, 2025
Merged
Prev Previous commit
Next Next commit
PYTHON-5372 Convert Remaining Variants to Use Common Tasks
  • Loading branch information
blink1073 committed May 2, 2025
commit f118492592a38c855e375e4dd50693abe918d4b0
27 changes: 27 additions & 0 deletions .evergreen/generated_configs/variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,33 @@ buildvariants:
tags: [encryption_tag]

# Enterprise auth tests
- name: auth-enterprise-rhel8
tasks:
- name: .test-non-standard
display_name: Auth Enterprise RHEL8
run_on:
- rhel87-small
expansions:
TEST_NAME: enterprise_auth
AUTH: auth
- name: auth-enterprise-macos
tasks:
- name: .test-non-standard !.pypy
display_name: Auth Enterprise macOS
run_on:
- macos-14
expansions:
TEST_NAME: enterprise_auth
AUTH: auth
- name: auth-enterprise-win64
tasks:
- name: .test-non-standard !.pypy
display_name: Auth Enterprise Win64
run_on:
- windows-64-vsMulti-small
expansions:
TEST_NAME: enterprise_auth
AUTH: auth

# Free threaded tests
- name: free-threaded-rhel8-python3.13t
Expand Down
1 change: 1 addition & 0 deletions .evergreen/scripts/generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ def create_enterprise_auth_variants():
tasks = [".test-non-standard !.pypy"]
variant = create_variant(tasks, display_name, host=host, expansions=expansions)
variants.append(variant)
return variants


def create_pyopenssl_variants():
Expand Down