Add some make targets.
This commit is contained in:
parent
9320d056d9
commit
79cd5bb71a
1 changed files with 7 additions and 0 deletions
7
Makefile
7
Makefile
|
@ -0,0 +1,7 @@
|
||||||
|
.PHONY: help
|
||||||
|
help: ## List make targets
|
||||||
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
|
test: ## Run tests
|
||||||
|
pipenv run pytest
|
Loading…
Add table
Reference in a new issue