.PHONY: test build tester parity all

test:            ## baterías de regresión
	python3 engine/matcher.py --test

build:           ## regenerar catálogo desde tools/catalog_data.py + auditar
	cd tools && python3 -c "import build_catalog as B; B.build(); B.audit()"

tester:          ## regenerar tester.html
	python3 engine/build_tester.py

all: build tester test
