17 lines
485 B
Makefile
17 lines
485 B
Makefile
.PHONY: test verify demo lint-example doctor
|
|
|
|
test:
|
|
PYTHONPATH=src python3 -m unittest discover -s tests -v
|
|
|
|
verify:
|
|
bash scripts/verify.sh
|
|
|
|
demo:
|
|
bash scripts/run-demo.sh
|
|
|
|
lint-example:
|
|
PYTHONPATH=src python3 -m claridoc lint examples/output/retry-policy-demo/final/document.md --brief examples/briefs/retry-policy-blog.json --sources examples/sources/retry-policy-sources.json
|
|
|
|
doctor:
|
|
PYTHONPATH=src python3 -m claridoc doctor --config config/pipeline.multi-agent.example.json
|