blob: 0e4130e5db7450f755f44c9b3aaab37dbf41cf0b [file] [log] [blame]
SRC_PATHS := rrprebuiltupdater tests
check: format lint test
.DEFAULT_GOAL: check
format:
poetry run black $(SRC_PATHS)
poetry run isort $(SRC_PATHS)
lint:
poetry run mypy $(SRC_PATHS)
poetry run pylint $(SRC_PATHS)
test:
poetry run pytest \
--cov-report=term \
--cov-report=xml \
--cov rrprebuiltupdater \
$(SRC_PATHS)
.PHONY: format lint test check