Skip to content

Commit 2a70bf6

Browse files
committed
test: run TLS regressions in legacy HTTPX wheel lane
1 parent c203ab1 commit 2a70bf6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

scripts/utils/validate-httpx2-wheel.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
BASE_TEST = ROOT / "tests/test_httpx2_base.py"
1414
HTTPX2_TEST = ROOT / "tests/test_httpx2.py"
1515
LEGACY_TEST = ROOT / "tests/test_httpx_compat.py"
16+
TLS_TEST = ROOT / "tests/test_tls_hostname.py"
1617

1718

1819
def venv_python(environment_path: Path) -> Path:
@@ -109,8 +110,8 @@ def main() -> None:
109110
run_case(
110111
wheel,
111112
extra=None,
112-
tests=[LEGACY_TEST],
113-
dependencies=[*common, "httpx-aiohttp>=0.2.0,<0.3"],
113+
tests=[LEGACY_TEST, TLS_TEST],
114+
dependencies=[*common, "httpx-aiohttp>=0.2.0,<0.3", "cryptography>=50.0.0"],
114115
legacy=True,
115116
)
116117
print("Validated HTTPX2-only base and aiohttp installs plus isolated legacy HTTPX/aiohttp compatibility")

0 commit comments

Comments
 (0)