Code and test verification orchestrator — interrogates code quality AND whether tests genuinely prove correctness
Project description
audit-test
One command. One policy. One report. One fail-closed verdict.
Interrogates the quality of a repo's code and its tests — answers the hard question: does the code work, do the tests prove it, and did my change break anything?
Install
pip install audit-test
Three CLI commands available after install (all identical):
audit-test high
audit-test high
audit-code high
Or from source:
git clone https://github.com/Yosef-Bunick/AUDIT-TEST.git
cd AUDIT-TEST
pip install -e .
Usage
Bare words or flags — both work:
audit-test # full audit
audit-test min # fast: wiring + phd + quality
audit-test full # complete: all checks + raw output
audit-test fix # auto-format (~1s)
audit-test phd high # PHD only, HIGH only
audit-test phd wiring medium # PHD + wiring, HIGH+MEDIUM
audit-test -p <dir> # audit a specific project
audit-test -s "suite lint" # skip suite + lint
Flags quick reference
| Short | Long | Does |
|---|---|---|
-h |
--high |
HIGH severity only (default) |
-m |
--medium |
HIGH + MEDIUM severity |
--info |
HIGH + MEDIUM + INFO | |
--all |
all findings | |
-v |
--verbose |
full detail output |
-f |
--fix |
auto-format |
-F |
--full |
complete analysis |
-p |
--path |
project directory |
-s |
--skip |
skip modules (comma/space) |
-H |
--help |
show help |
Modules
Any combination, bare words or --flag:
audit-test phd # PHD static audit
audit-test wiring # wiring audit
audit-test runtime # runtime audit
audit-test suite # test suite audit
audit-test quality # quality gates
audit-test syntax # all language syntax checks
audit-test python # Python syntax only
audit-test tests # non-Python test suites
audit-test lint # ruff check
audit-test black # black format
audit-test lint fix # ruff --fix
audit-test black fix # black format
audit-test phd wiring medium # mix any modules + severity
Change gate
audit-test gate # judge working-tree diff vs HEAD
audit-test gate high # block on new HIGH findings (default)
audit-test gate medium # block on new HIGH+MEDIUM
audit-test gate fast # skip mutation (G4)
audit-test gate -p <dir> # gate a specific project
Standalone scripts
The original audit scripts also work standalone — no pip install needed. Copy them into any project and run directly:
python audit_wiring.py # dead symbols, config drift
python audit_phd.py # exception discipline, security patterns
python audit_phd.py --min-severity=HIGH # HIGH findings only
python audit_runtime.py # timeouts, log hygiene, prompt contracts
python audit_suite.py # run pytest, classify failures
python audit_quality.py # black, ruff, mypy, CVE, coverage
python audit_gate.py # judge working-tree diff vs HEAD
python run_all_audits.py # orchestrate all five into one report
The stack
| Audit | Question it answers |
|---|---|
| wiring | Is it connected? Dead symbols, test-only code, config key drift |
| phd | Does it meet the bar? Exception discipline, security patterns, state bugs |
| runtime | Will it hang or crash? Unbounded loops, missing timeouts, secrets in logs |
| suite | Is the test suite healthy? Runs pytest, classifies real vs pollution failures |
| quality | External gates + execution truth. Black, ruff, mypy, CVE scan, coverage |
Languages
Auto-detects 9 languages (marker files or source files anywhere in the tree,
root included). Python runs the full five-audit stack. Every other language
gets a real syntax check plus its native test suite — and when the
required toolchain is missing, the result is an honest SKIP with the
install hint, never a fake pass:
| Language | Detection | Syntax check | Test suite |
|---|---|---|---|
| Python | pyproject.toml, setup.py, *.py |
ast.parse per file (built-in) |
pytest (via suite audit) |
| JS / TS | package.json, *.js, *.ts |
node --check; TS via tsc --noEmit (TS1xxx only) |
npm test (real script only) |
| Java | pom.xml, build.gradle, *.java |
javac -proc:none (parse errors only; classpath noise not judged) |
mvn test / gradlew test |
| Go | go.mod, *.go |
gofmt -l -e (parse + format drift) |
go test ./... |
| Rust | Cargo.toml, *.rs |
cargo check |
cargo test |
| C# | *.cs |
dotnet build (SKIP if restore fails) |
dotnet test |
| C / C++ | CMakeLists.txt, Makefile, *.c(pp) |
gcc/clang -fsyntax-only or cl /Zs per unit |
ctest (if build/ exists) |
| HTML / CSS | *.html, *.css, *.scss |
tag-balance / brace-balance (structural, stdlib) | — |
| SQL | *.sql |
sqlfluff parse (ANSI; SKIP if not installed) |
— |
Restrict detection with [audit] languages = ["python", "go"] in
audit-code.toml (empty list = auto-detect all).
Exit codes
| Code | Meaning |
|---|---|
| 0 | Audits completed, passed |
| 1 | Completed but blocking problems found |
| 2 | Setup or configuration error |
| 3 | Required audit or tool crashed |
| 4 | No supported language detected |
Severity levels
Every finding has a severity: HIGH, MEDIUM, or INFO. Default reports
HIGH only. Use --medium, --info, or --all to expand. The phd audit
supports --min-severity=HIGH when run standalone.
The gate
audit-test gate judges only your working-tree diff vs HEAD, inside a
disposable git worktree:
- G0 syntax — changed files must parse
- G1 static regression — no new HIGH findings vs HEAD
- G2 suite green — full test suite passes
- G3 execution proof — every changed def + line executes under tests
- G4 mutation kill — injected bugs in changed lines must be caught
Design
- Fail-closed. Crash, missing summary, unparseable file — all failures, never passes.
- Name-level vs execution-level. "Test mentions this" and "body ran" are different facts.
- Judge the diff, not the history. Legacy findings are baseline; only regressions fail.
- Honest limits. No static tool promises semantic correctness — this stack narrows the gap.
Configuration
.audit-test-ignore
Skip directories or files from all scans. Drop this file in your project root.
One pattern per line, # for comments. Patterns are merged with built-in defaults
(.venv, node_modules, .git, __pycache__, dist, build, etc.):
# .audit-test-ignore
generated/
third_party/
*.pb2.py
Patterns match directory/file name parts (exact match, not substring).
# audit: ok
Add # audit: ok to the end of any line to suppress a finding on that line.
Use sparingly — every suppression is counted in the summary.
Applies to wiring, phd, and runtime audits. Example:
except Exception: # audit: ok (intentional swallow — benign)
TOOL_TIMEOUT = 600 # audit: ok (tool config, not a tuning knob)
subprocess.run(cmd) # audit: ok (audit tools ARE subprocess runners)
Requirements
Python 3.10+, git, pytest
Optional (auto-detected): coverage, black, ruff, mypy, pip-audit, mutmut
License
This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License (CC BY-NC-ND 4.0).
© Yosef Bunick. All rights reserved.
You are free to:
Share — copy and redistribute the material in any medium or format
Under the following terms:
Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. NonCommercial — You may not use the material for commercial purposes. NoDerivatives — If you remix, transform, or build upon the material, you may not distribute the modified material.
License details: https://creativecommons.org/licenses/by-nc-nd/4.0/
This license applies unless otherwise explicitly stated within specific files or directories of this repository.
For permission to monetize, distribute modified versions, remix, sublicense, or commercially use this repository, please contact the creator directly.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file audit_test-0.1.0.tar.gz.
File metadata
- Download URL: audit_test-0.1.0.tar.gz
- Upload date:
- Size: 114.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47dfbcb68d367ef45cc103dbddafe1f926154cf394a1f99ac7289a78e4831c34
|
|
| MD5 |
ba1fca01dc026d3741d92f868975685b
|
|
| BLAKE2b-256 |
6cf9065a39b141dc0cdb851d7b3e98577c6f89ae35a67d81c97dc4d05096d2c8
|
Provenance
The following attestation bundles were made for audit_test-0.1.0.tar.gz:
Publisher:
publish.yml on Yosef-Bunick/AUDIT-TEST
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
audit_test-0.1.0.tar.gz -
Subject digest:
47dfbcb68d367ef45cc103dbddafe1f926154cf394a1f99ac7289a78e4831c34 - Sigstore transparency entry: 2069441911
- Sigstore integration time:
-
Permalink:
Yosef-Bunick/AUDIT-TEST@4ed4ad06ce4339449dbd2c2bff21f057d128f665 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Yosef-Bunick
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4ed4ad06ce4339449dbd2c2bff21f057d128f665 -
Trigger Event:
push
-
Statement type:
File details
Details for the file audit_test-0.1.0-py3-none-any.whl.
File metadata
- Download URL: audit_test-0.1.0-py3-none-any.whl
- Upload date:
- Size: 126.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56ca4961b6b72eb71362376d0a49642cf8fbe079f4912e3f8e0d8cb1506e8979
|
|
| MD5 |
73563b163d3f8ef22e127a6fceeb2b21
|
|
| BLAKE2b-256 |
bd0877637084c6e945e45beb82bda45bc66adac5935df16f73f874e236715903
|
Provenance
The following attestation bundles were made for audit_test-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on Yosef-Bunick/AUDIT-TEST
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
audit_test-0.1.0-py3-none-any.whl -
Subject digest:
56ca4961b6b72eb71362376d0a49642cf8fbe079f4912e3f8e0d8cb1506e8979 - Sigstore transparency entry: 2069442298
- Sigstore integration time:
-
Permalink:
Yosef-Bunick/AUDIT-TEST@4ed4ad06ce4339449dbd2c2bff21f057d128f665 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Yosef-Bunick
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4ed4ad06ce4339449dbd2c2bff21f057d128f665 -
Trigger Event:
push
-
Statement type: