From 3ee35c13741f1c438a37a398828f2586b7b0559f Mon Sep 17 00:00:00 2001 From: Anuraag Agrawal Date: Wed, 29 Oct 2025 23:22:58 +0900 Subject: [PATCH] Update conformance to latest unreleased version Signed-off-by: Anuraag Agrawal --- conformance/test/_util.py | 2 +- conformance/test/test_server.py | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/conformance/test/_util.py b/conformance/test/_util.py index 9bc70ce..54facef 100644 --- a/conformance/test/_util.py +++ b/conformance/test/_util.py @@ -1,7 +1,7 @@ import asyncio import sys -VERSION_CONFORMANCE = "v1.0.4" +VERSION_CONFORMANCE = "0bed9ca203aeda4e344edc442a4b2ede91726db5" async def create_standard_streams(): diff --git a/conformance/test/test_server.py b/conformance/test/test_server.py index e3bad2c..5ae376b 100644 --- a/conformance/test/test_server.py +++ b/conformance/test/test_server.py @@ -52,9 +52,6 @@ def test_server_sync(server: str) -> None: "**/bidi-stream/full-duplex/**", ] match server: - case "granian" | "hypercorn": - # granian and hypercorn seem to have issues with concurrency - opts += ["--parallel", "1"] case "gunicorn": # gunicorn doesn't support HTTP/2 opts = ["--skip", "**/HTTPVersion:2/**"] @@ -94,9 +91,6 @@ def test_server_async(server: str) -> None: ) opts = [] match server: - case "granian" | "hypercorn": - # granian and hypercorn seem to have issues with concurrency - opts = ["--parallel", "1"] case "uvicorn": # uvicorn doesn't support HTTP/2 opts = ["--skip", "**/HTTPVersion:2/**"]