Skip to content

Commit

Permalink
add missing dependencies to python http tempklate
Browse files Browse the repository at this point in the history
  • Loading branch information
lkingland committed Mar 5, 2025
1 parent 560d9f9 commit d030919
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion templates/python/http/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
1 change: 0 additions & 1 deletion templates/python/http/tests/test_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit d030919

Please sign in to comment.