Skip to content

Commit ff18b38

Browse files
dlstadtherclaude
andauthored
fix(lint): exclude nox/venv/cache dirs from interrogate scan (#24)
interrogate had no path arg and only excluded tests/docs/noxfile.py, so local .nox venvs, .venv, and cache dirs (full of vendored pip packages with no docstrings) got scanned and tanked coverage below the 100% gate. CI checks out fresh with none of these dirs so it never hit this. Widen the exclude list to match local reality. Claude-Session: https://claude.ai/code/session_01HpUiyz1W779QxRBzRxXZzc Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 2491ed8 commit ff18b38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ packages = ["src/sample"]
5050
fail-under = 100
5151
ignore-init-method = true
5252
verbose = 1
53-
exclude = ["tests", "docs", "noxfile.py"]
53+
exclude = ["tests", "docs", "noxfile.py", ".nox", ".venv", "dist", "build", ".mypy_cache", ".pytest_cache", ".ruff_cache"]
5454

5555

5656
#######

0 commit comments

Comments
 (0)