blob: bf7573b58a7c15c845c95d9d5329e62063649182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
.PHONEY: help
help:
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
sort | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONEY: test
test: ## run the test suite
@python -m unittest
.PHONEY: satisfy-reqs
satisfy-reqs: ## ensure the requirements are installed
@python -m pip install -r requirements.txt
|