Skip to content

PYTHON-5180 Use a standard batchtime of one week #2179

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 2 commits into from
Mar 4, 2025
Merged
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
4 changes: 2 additions & 2 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1430,10 +1430,10 @@ buildvariants:
- debian11-small
tasks:
- name: test-gcpkms
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
batchtime: 10080 # 7 days
- name: test-gcpkms-fail
- name: test-azurekms
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
batchtime: 10080 # 7 days
- name: test-azurekms-fail

- name: rhel8-test-lambda
Expand Down
28 changes: 14 additions & 14 deletions .evergreen/generated_configs/variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ buildvariants:
display_name: OCSP RHEL8 v4.4 Python3.9
run_on:
- rhel87-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -836,7 +836,7 @@ buildvariants:
display_name: OCSP RHEL8 v5.0 Python3.10
run_on:
- rhel87-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -849,7 +849,7 @@ buildvariants:
display_name: OCSP RHEL8 v6.0 Python3.11
run_on:
- rhel87-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -862,7 +862,7 @@ buildvariants:
display_name: OCSP RHEL8 v7.0 Python3.12
run_on:
- rhel87-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -875,7 +875,7 @@ buildvariants:
display_name: OCSP RHEL8 v8.0 Python3.13
run_on:
- rhel87-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -888,7 +888,7 @@ buildvariants:
display_name: OCSP RHEL8 rapid PyPy3.10
run_on:
- rhel87-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -901,7 +901,7 @@ buildvariants:
display_name: OCSP RHEL8 latest Python3.9
run_on:
- rhel87-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -914,7 +914,7 @@ buildvariants:
display_name: OCSP Win64 v4.4 Python3.9
run_on:
- windows-64-vsMulti-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -927,7 +927,7 @@ buildvariants:
display_name: OCSP Win64 v8.0 Python3.13
run_on:
- windows-64-vsMulti-small
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -940,7 +940,7 @@ buildvariants:
display_name: OCSP macOS v4.4 Python3.9
run_on:
- macos-14
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -953,7 +953,7 @@ buildvariants:
display_name: OCSP macOS v8.0 Python3.13
run_on:
- macos-14
batchtime: 20160
batchtime: 10080
expansions:
AUTH: noauth
SSL: ssl
Expand All @@ -971,21 +971,21 @@ buildvariants:
display_name: Auth OIDC Ubuntu-22
run_on:
- ubuntu2204-small
batchtime: 20160
batchtime: 10080
- name: auth-oidc-macos
tasks:
- name: testoidc_task_group
display_name: Auth OIDC macOS
run_on:
- macos-14
batchtime: 20160
batchtime: 10080
- name: auth-oidc-win64
tasks:
- name: testoidc_task_group
display_name: Auth OIDC Win64
run_on:
- windows-64-vsMulti-small
batchtime: 20160
batchtime: 10080

# Pyopenssl tests
- name: pyopenssl-macos-python3.9
Expand Down
4 changes: 2 additions & 2 deletions .evergreen/scripts/generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def generate_yaml(tasks=None, variants=None):

def create_ocsp_variants() -> list[BuildVariant]:
variants = []
batchtime = BATCHTIME_WEEK * 2
batchtime = BATCHTIME_WEEK
expansions = dict(AUTH="noauth", SSL="ssl", TOPOLOGY="server")
base_display = "OCSP"

Expand Down Expand Up @@ -674,7 +674,7 @@ def create_oidc_auth_variants():
tasks,
get_display_name("Auth OIDC", host),
host=host,
batchtime=BATCHTIME_WEEK * 2,
batchtime=BATCHTIME_WEEK,
)
)
return variants
Expand Down
Loading