diff --git a/templates/python/http/pyproject.toml b/templates/python/http/pyproject.toml index a0ecf6eaa..bcbbddac0 100644 --- a/templates/python/http/pyproject.toml +++ b/templates/python/http/pyproject.toml @@ -6,7 +6,9 @@ requires-python = ">=3.10" readme = "README.md" license = "MIT" dependencies = [ - "httpx" + "httpx", + "pytest", + "pytest-asyncio" ] authors = [ { name="Your Name", email="you@example.com"}, diff --git a/templates/python/http/tests/test_func.py b/templates/python/http/tests/test_func.py index 5e77272e6..5b37a735c 100644 --- a/templates/python/http/tests/test_func.py +++ b/templates/python/http/tests/test_func.py @@ -36,4 +36,3 @@ async def send(message): assert sent_ok, "Function did not send a 200 OK" assert sent_headers, "Function did not send headers" assert sent_body, "Function did not send a body" -