diff --git a/backend/docs/usage.md b/backend/docs/usage.md index d6df6563..19f49a57 100644 --- a/backend/docs/usage.md +++ b/backend/docs/usage.md @@ -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. diff --git a/backend/noxfile.py b/backend/noxfile.py index 9b926bc1..19ffc549 100644 --- a/backend/noxfile.py +++ b/backend/noxfile.py @@ -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]") diff --git a/backend/pyproject.toml b/backend/pyproject.toml index f2e64fd2..44dbbfef 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -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"