-
Notifications
You must be signed in to change notification settings - Fork 23
/
Makefile
28 lines (21 loc) · 894 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.PHONY: all help install venv test run
help: ## Display this help
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-\\.]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
all: help
venv: ## Create a Python virtual environment
$(info Creating Python 3 virtual environment...)
poetry shell
install: ## Install dependencies
$(info Installing dependencies...)
sudo poetry install
lint: ## Run the linter
$(info Running linting...)
flake8 service --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 service --count --max-complexity=10 --max-line-length=127 --statistics
pylint service --max-line-length=127
test: ## Run the unit tests
$(info Running unit tests...)
pytest
run: ## Run the service
$(info Starting service...)
honcho start