Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a0291a-1e87-7151-9934-fcbfe3f65eb1
16 lines
920 B
Makefile
16 lines
920 B
Makefile
.PHONY: canon-lineage check exception-fixtures reference-fixtures test
|
|
|
|
check: test reference-fixtures exception-fixtures
|
|
|
|
test:
|
|
PYTHONDONTWRITEBYTECODE=1 python3 -m unittest discover -s tests -v
|
|
|
|
reference-fixtures:
|
|
PYTHONDONTWRITEBYTECODE=1 python3 tools/resolve_zones.py --manifest fixtures/manifests/reference.yaml --control-profile profiles/netkingdom-build-v0.1.yaml >/dev/null
|
|
|
|
exception-fixtures:
|
|
PYTHONDONTWRITEBYTECODE=1 python3 tools/check_zone_exceptions.py fixtures/exceptions/valid-active.yaml --policy fixtures/exceptions/policy.yaml --at 2026-08-23T10:00:00Z >/dev/null
|
|
! PYTHONDONTWRITEBYTECODE=1 python3 tools/check_zone_exceptions.py fixtures/exceptions/invalid-overlap.yaml --policy fixtures/exceptions/policy.yaml --at 2026-08-23T11:30:00Z >/dev/null
|
|
|
|
canon-lineage:
|
|
PYTHONDONTWRITEBYTECODE=1 python3 tools/check_canon_lineage.py --manifest docs/canon-lineage.yaml --canon-root "$(CANON_ROOT)"
|