testing-conventions 0.0.21

Enforce testing conventions in libraries (Python, TypeScript, and Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
# Colocated-test exemptions only — coverage thresholds are optional.
[[python.exempt]]
path = "cli.py"
rules = ["colocated-test"]
reason = "thin launcher; logic lives in core(), tested in core_test.py"

[[python.exempt]]
path = "pkg/__init__.py"
rules = ["colocated-test"]
reason = "package re-export surface; carries no logic of its own"