Skip to content
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
12 changes: 6 additions & 6 deletions .evergreen/generated_configs/variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ buildvariants:
- macos-14
batchtime: 10080
expansions:
TEST_NAME: pyopenssl
SUB_TEST_NAME: pyopenssl
PYTHON_BINARY: /Library/Frameworks/Python.Framework/Versions/3.9/bin/python3
- name: pyopenssl-rhel8-python3.10
tasks:
Expand All @@ -631,7 +631,7 @@ buildvariants:
- rhel87-small
batchtime: 10080
expansions:
TEST_NAME: pyopenssl
SUB_TEST_NAME: pyopenssl
PYTHON_BINARY: /opt/python/3.10/bin/python3
- name: pyopenssl-rhel8-python3.11
tasks:
Expand All @@ -642,7 +642,7 @@ buildvariants:
- rhel87-small
batchtime: 10080
expansions:
TEST_NAME: pyopenssl
SUB_TEST_NAME: pyopenssl
PYTHON_BINARY: /opt/python/3.11/bin/python3
- name: pyopenssl-rhel8-python3.12
tasks:
Expand All @@ -653,7 +653,7 @@ buildvariants:
- rhel87-small
batchtime: 10080
expansions:
TEST_NAME: pyopenssl
SUB_TEST_NAME: pyopenssl
PYTHON_BINARY: /opt/python/3.12/bin/python3
- name: pyopenssl-win64-python3.13
tasks:
Expand All @@ -664,7 +664,7 @@ buildvariants:
- windows-64-vsMulti-small
batchtime: 10080
expansions:
TEST_NAME: pyopenssl
SUB_TEST_NAME: pyopenssl
PYTHON_BINARY: C:/python/Python313/python.exe
- name: pyopenssl-rhel8-pypy3.10
tasks:
Expand All @@ -675,7 +675,7 @@ buildvariants:
- rhel87-small
batchtime: 10080
expansions:
TEST_NAME: pyopenssl
SUB_TEST_NAME: pyopenssl
PYTHON_BINARY: /opt/python/pypy3.10/bin/python3

# Search index tests
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/scripts/generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def create_enterprise_auth_variants():
def create_pyopenssl_variants():
base_name = "PyOpenSSL"
batchtime = BATCHTIME_WEEK
expansions = dict(TEST_NAME="pyopenssl")
expansions = dict(SUB_TEST_NAME="pyopenssl")
variants = []

for python in ALL_PYTHONS:
Expand Down
2 changes: 2 additions & 0 deletions .evergreen/scripts/setup-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ if [ -f $SCRIPT_DIR/env.sh ]; then
source $SCRIPT_DIR/env.sh
fi

echo "Setting up tests with args \"$*\"..."
uv run $SCRIPT_DIR/setup_tests.py "$@"
echo "Setting up tests with args \"$*\"... done."
4 changes: 2 additions & 2 deletions .evergreen/scripts/setup_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ def handle_test_env() -> None:
load_config_from_file(csfle_dir / "secrets-export.sh")
run_command(f"bash {csfle_dir.as_posix()}/start-servers.sh")

if sub_test_name == "pyopenssl":
UV_ARGS.append("--extra ocsp")
if sub_test_name == "pyopenssl":
UV_ARGS.append("--extra ocsp")

if is_set("TEST_CRYPT_SHARED") or opts.crypt_shared:
config = read_env(f"{DRIVERS_TOOLS}/mo-expansion.sh")
Expand Down
1 change: 0 additions & 1 deletion .evergreen/scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ class Distro:
"kms": "kms",
"load_balancer": "load_balancer",
"mockupdb": "mockupdb",
"pyopenssl": "",
"ocsp": "ocsp",
"perf": "perf",
"serverless": "",
Expand Down
Loading