You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
938 B
33 lines
938 B
.DEFAULT: help |
|
.PHONY: help clean clean-pyc clean-build dist lint test tests docs |
|
|
|
help: ## Display this help section |
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9_-]+:.*?## / {printf "\033[36m%-38s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) |
|
|
|
clean: clean-pyc clean-build ## Delete all artifacts |
|
|
|
clean-pyc: ## Delete python cache artifacts |
|
@find . -name '*.pyc' -delete |
|
@find . -name '*.pyo' -delete |
|
@find . -name __pycache__ -delete |
|
|
|
clean-build: ## Delete distribution artifacts |
|
@rm --force --recursive build dist src/*.egg-info docs/_build |
|
|
|
dist: clean ## Generate distribution artifacts |
|
poetry build |
|
|
|
lint: ## Lint with black, flake8 & reorder-python-imports |
|
nox -rs precommit |
|
|
|
test: ## Run tests with latest Python version |
|
nox |
|
|
|
coverage: ## Run coverage tests with latest Python version |
|
nox -rs coverage |
|
|
|
tests: ## Run tests with all supported Python versions |
|
nox -rs tests |
|
|
|
docs: ## Run documentation generation |
|
nox -rs docs
|
|
|