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
369 B
Makefile

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