Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

# Control factors for finding pieces of the module
MODULE_NAME = "module_name"
COVERAGE_FAIL_UNDER = "100"
LINT_PATH = "./src"
TESTS_PATH = "./tests"

Expand Down Expand Up @@ -82,7 +81,7 @@ def run_tests_with_coverage(session: nox.Session) -> None:
coverage("run", "--parallel-mode", "--module", "pytest", *session.posargs)
else:
coverage("run", "--module", "pytest", *session.posargs)
coverage("report", "--show-missing", f"--fail-under={COVERAGE_FAIL_UNDER}")
coverage("report", "--show-missing")
coverage("html")


Expand All @@ -94,7 +93,7 @@ def combine_coverage(session: nox.Session) -> None:
coverage = functools.partial(session.run, "uv", "run", "coverage")

coverage("combine")
coverage("report", "--show-missing", f"--fail-under={COVERAGE_FAIL_UNDER}")
coverage("report", "--show-missing")
coverage("html")
coverage("json")

Expand Down