This repository has been archived on 2024-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
Colligere/Makefile

16 lines
354 B
Makefile

.PHONY: pytest lint test
test: pytest lint
pytest:
pytest -xvv
lint:
black --line-length 79 --quiet colligere/ tests/ scripts/
flake8 --max-line-length 79 colligere/ tests/ scripts/
pandoc --reference-links --reference-location=document --columns=79 -o README.md README.md
package:
python3 -m pip install --upgrade build
python3 -m build