lockbox/Makefile

9 lines
253 B
Makefile

lint:
@ruff check $(shell git diff --diff-filter=ACM --name-only HEAD | grep '\.py$$' ) --config=./pyproject.toml
stampreqs:
poetry export --without-hashes --format=requirements.txt > requirements.txt
test:
pytest --cov=. --cov-report term-missing