check_all runs every check stage even when one fails; malformed dates are reported rather than aborting; accepted findings and closure evidence are shown; defer requires a valid future date. Adds SCOPE.md, the scope assessment, the open-findings source review and a unittest suite. Stops tracking __pycache__. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Assistant: claude-code Assistant-Model: opus Assistant-Process: 6903@bnt-lap001 Assistant-Session: 8319e8a8-ffa6-4eb3-b8bf-b29945628f89
35 lines
955 B
Makefile
35 lines
955 B
Makefile
PY := python3
|
|
TOOLS := tools
|
|
|
|
.PHONY: help register check checked due fixes coverage test
|
|
|
|
help:
|
|
@echo "make register - rebuild REGISTER.md from findings/"
|
|
@echo "make check - verify the index, report what is going quiet, and read the inbox"
|
|
@echo "make due - just the work list: what needs a check right now"
|
|
@echo "make fixes - the state of every fix this register claims to track"
|
|
@echo "make coverage - what the register has never heard from"
|
|
@echo "make checked - record a check outcome: make checked ARGS=\"RISK-F-0002 clean\""
|
|
|
|
register:
|
|
@$(PY) $(TOOLS)/register_index.py
|
|
|
|
check:
|
|
@$(PY) $(TOOLS)/check_all.py
|
|
|
|
checked:
|
|
@$(PY) $(TOOLS)/record_check.py $(ARGS)
|
|
@$(PY) $(TOOLS)/register_index.py
|
|
|
|
due:
|
|
@$(PY) $(TOOLS)/register_check.py
|
|
@$(PY) $(TOOLS)/inbox_check.py
|
|
|
|
fixes:
|
|
@$(PY) $(TOOLS)/fix_tracker.py
|
|
|
|
coverage:
|
|
@$(PY) $(TOOLS)/coverage.py
|
|
|
|
test:
|
|
@PYTHONDONTWRITEBYTECODE=1 $(PY) -m unittest discover -s tests -v
|