Add strict documentation graph gate
This commit is contained in:
parent
983a55f156
commit
9023f28cc0
4 changed files with 893 additions and 2 deletions
8
Makefile
8
Makefile
|
|
@ -5,7 +5,7 @@ NPM := npm
|
|||
PYTHONPYCACHEPREFIX := /tmp/docforge-quality-pycache
|
||||
PYTEST_BASETEMP := /tmp/docforge-quality-pytest
|
||||
|
||||
.PHONY: accessibility adoption-m4 benchmark benchmark-m1 benchmark-m1-smoke benchmark-m2 benchmark-m2-smoke benchmark-m3 benchmark-m3-full benchmark-m3-smoke benchmark-m4 benchmark-m4-full benchmark-m4-smoke benchmark-smoke build command-reference-check compile contract dependencies format-check gate lint lock test type
|
||||
.PHONY: accessibility adoption-m4 benchmark benchmark-m1 benchmark-m1-smoke benchmark-m2 benchmark-m2-smoke benchmark-m3 benchmark-m3-full benchmark-m3-smoke benchmark-m4 benchmark-m4-full benchmark-m4-smoke benchmark-smoke build command-reference-check compile contract dependencies docs-check format-check gate lint lock test type
|
||||
|
||||
accessibility:
|
||||
$(NPM) run test:accessibility
|
||||
|
|
@ -66,6 +66,10 @@ command-reference-check:
|
|||
$(PYTHON) tools/generate_command_reference.py \
|
||||
--output docs/COMMAND_REFERENCE.md --check > /dev/null
|
||||
|
||||
docs-check: command-reference-check
|
||||
$(PYTHON) tools/check_documentation.py \
|
||||
--pending-inventory tools/docs_pending_m4_pages.txt
|
||||
|
||||
benchmark-smoke:
|
||||
$(PYTHON) tools/milestone0_baseline.py --nodes 25 --samples 1 --cold-samples 1 \
|
||||
--output /tmp/docforge-milestone0-smoke.json > /dev/null
|
||||
|
|
@ -105,4 +109,4 @@ benchmark-m4:
|
|||
|
||||
benchmark-m4-full: benchmark-m4
|
||||
|
||||
gate: format-check lint type compile contract test accessibility lock dependencies build command-reference-check benchmark-smoke benchmark-m1-smoke benchmark-m2-smoke benchmark-m3-smoke benchmark-m4-smoke
|
||||
gate: format-check lint type compile contract test accessibility lock dependencies build docs-check benchmark-smoke benchmark-m1-smoke benchmark-m2-smoke benchmark-m3-smoke benchmark-m4-smoke
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue