mirror of
https://ghfast.top/https://github.com/aeroxw/easy-tdx.git
synced 2026-09-12 16:54:17 +08:00
583 B
583 B
name, description, disable-model-invocation
| name | description | disable-model-invocation |
|---|---|---|
| verify | Run full offline verification suite (pytest unit tests + mypy + ruff) before committing changes. | true |
Verify
Run the full offline verification pipeline:
- Run
python -m pytest tests/unit/ -v— all unit tests must pass. - Run
mypy src/— strict type checking must pass with zero errors. - Run
ruff check src/ tests/— no lint errors. - Run
ruff format --check src/ tests/— formatting must be clean.
If any step fails, fix the issues and re-run. Do not report completion until all four steps pass.