Skip to content
Closed
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
2 changes: 1 addition & 1 deletion conformance/test/_util.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import asyncio
import sys

VERSION_CONFORMANCE = "v1.0.4"
VERSION_CONFORMANCE = "0bed9ca203aeda4e344edc442a4b2ede91726db5"


async def create_standard_streams():
Expand Down
6 changes: 0 additions & 6 deletions conformance/test/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/**"]
Expand Down Expand Up @@ -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/**"]
Expand Down
Loading