-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathMakefile
95 lines (70 loc) · 2.33 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
PROJECT_NAME := $(shell basename $CURDIR)
VIRTUAL_ENVIRONMENT := $(CURDIR)/.venv
LOCAL_PYTHON := $(VIRTUAL_ENVIRONMENT)/bin/python3
define HELP
Manage $(PROJECT_NAME). Usage:
make run - Run $(PROJECT_NAME) locally.
make install - Create local virtualenv & install dependencies.
make deploy - Set up project & run locally.
make update - Update dependencies via Poetry and output resulting `requirements.txt`.
make format - Run Python code formatter & sort dependencies.
make lint - Check code formatting with flake8.
make clean - Remove extraneous compiled files, caches, logs, etc.
endef
export HELP
.PHONY: run install deploy update format lint clean help
env: ./.venv/bin/activate
all help:
@echo "$$HELP"
.PHONY: run
run: env
if [[ "./main.py" ]]; then $(LOCAL_PYTHON) -m main.py; else echo "main.py not found."; fi
.PHONY: install
install:
if [ ! -d "./.venv" ]; then python3 -m venv $(VIRTUAL_ENVIRONMENT); fi
. .venv/bin/activate
$(LOCAL_PYTHON) -m pip install --upgrade pip setuptools wheel
$(LOCAL_PYTHON) -m pip install -r requirements.txt
.PHONY: deploy
deploy:
make clean
make install
make run
.PHONY: test
test: env
$(LOCAL_PYTHON) -m \
coverage run -m pytest -v \
--disable-pytest-warnings \
&& coverage html --title='Coverage Report' -d .reports \
&& open .reports/index.html
.PHONY: update
update:
if [ ! -d "./.venv" ]; then python3 -m venv $(VIRTUAL_ENVIRONMENT); fi
$(LOCAL_PYTHON) -m pip install --upgrade pip setuptools wheel
poetry update
poetry export -f requirements.txt --output requirements.txt --without-hashes
.PHONY: format
format: env
isort --multi-line=3 .
black .
.PHONY: lint
lint: env
$(LOCAL_PYTHON) -m flake8 . --count \
--select=E9,F63,F7,F82 \
--exclude .git,.github,__pycache__,.pytest_cache,.venv,logs,creds,.venv,docs,logs,.reports \
--show-source \
--statistics
.PHONY: clean
clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
find . -name 'poetry.lock' -delete
find . -name '*.log' -delete
find . -name '.coverage' -delete
find . -wholename 'logs/*.json' -delete
find . -wholename '*/.pytest_cache' -delete
find . -wholename '**/.pytest_cache' -delete
find . -wholename './logs/*.json' -delete
find . -wholename '.webassets-cache/*' -delete
find . -wholename './logs' -delete
find . -wholename './.reports' -delete