Skip to content

Commit

Permalink
Flailing...
Browse files Browse the repository at this point in the history
The GitHub Action environment is unhappy with `uvicorn` 0.15; does the latest
0.32.1 work with everything else? Will that make GitHub happy?
  • Loading branch information
dbutenhof committed Dec 6, 2024
1 parent 657d0f7 commit a42740f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 27 deletions.
33 changes: 8 additions & 25 deletions backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ httptools = "^0.2.0"
elasticsearch = "7.13.4"
fastapi = "^0.104.1"
pydantic = "2.3.0"
uvicorn = "^0.14.0"
uvicorn = "^0.32.0"
trio = "^0.18.0"
aiohttp = "^3.7.4"
httpx = "^0.18.1"
Expand Down Expand Up @@ -58,7 +58,8 @@ deps = [
"pytest-asyncio",
"pytest-cov",
]
commands = [["pytest", "-s", "--cov-report=term", "--cov-branch", "--cov-report=html:{envtmpdir}/coverage.db", "--cov=app", "tests"]]
allowlist_externals = ["poetry"]
commands = [["poetry", "show"],["pytest", "-s", "--cov-report=term", "--cov-branch", "--cov-report=html:{envtmpdir}/coverage.db", "--cov=app", "tests"]]

[tool.tox.env.format]
description = "check code format"
Expand Down

0 comments on commit a42740f

Please sign in to comment.