bzurkowski/boil

View on GitHub
boil/plates/python_package/templates/{{ package_name }}/Makefile.j2

Summary

Maintainability
Test Coverage
.PHONY: format
format:
    @tox -e test-tools -- black .

.PHONY: format-check
format-check:
    @tox -e test-tools -- black --check --diff .

.PHONY: lint
lint:
    @tox -e test-tools -- flake8 .

.PHONY: test
test:
    @tox -e py39

.PHONY: coverage
coverage:
    @tox -e test-tools -- coverage report --fail-under=90