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
Raw Normal View History

.PHONY: pytest lint test tests package
2023-12-06 15:29:40 -06:00
tests: test
2023-12-06 15:29:40 -06:00
test:
pytest
2023-12-06 15:29:40 -06:00
lint:
pandoc --atx-headers --reference-links --reference-location=document --columns=79 -o README.md README.md
2023-12-06 15:29:40 -06:00
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