Nox is working.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-08-26 17:31:54 -04:00
parent ed813c382c
commit 1839722777
3 changed files with 3 additions and 7 deletions
+1 -5
View File
@@ -1,7 +1,3 @@
# Usage
```{eval-rst}
.. click:: backend.__main__:main
:prog: backend
:nested: full
```
This is started up within the docker compose file for the project.
+1 -1
View File
@@ -196,7 +196,7 @@ def coverage(session: Session) -> None:
Args:
session: The Nox session object.
"""
args = session.posargs or ["report"]
args = session.posargs or ["report", "--fail-under=90"]
session.install("coverage[toml]")
+1 -1
View File
@@ -50,7 +50,7 @@ typeguard = ">=2.13.3"
xdoctest = {extras = ["colors"], version = ">=0.15.10"}
myst-parser = {version = ">=0.16.1"}
pytest-asyncio = "^1.1.0"
cryptography = ">=45.0.6"
cryptography = ">=45.0.6" # For safety
[tool.poetry.scripts]
backend = "backend.__main__:main"