-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
164 lines (129 loc) · 5.56 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
## REFERENCES:
## (1) Passing environment variable with fallback value to Makefile:
## https://stackoverflow.com/a/70772707/6366150
## (2) Export environment variables inside "make environment"
## https://stackoverflow.com/a/49524393/6366150
## (3) Uppercase to lowercase and vice versa
## https://community.unix.com/t/uppercase-to-lowercase-and-vice-versa/285278/6
## (4) How do I trim leading and trailing whitespace from each line of some output?
## https://unix.stackexchange.com/a/279222/233927
## (5) Pytest log levels:
## https://docs.pytest.org/en/latest/how-to/logging.html
############################################################################
## (1) ## Allowed values: info | warn | error | debug
LOG_LEVEL ?= info
## (3) (4)
LOG_LEVEL :=$(shell echo '${LOG_LEVEL}'| tr '[:lower:]' '[:upper:]'| tr -d '[:blank:]')
## (1) ## Allowed values: true | false
BRUTEFORCE ?= false
## (3) (4)
BRUTEFORCE :=$(shell echo '${BRUTEFORCE}'| tr '[:lower:]' '[:upper:]'| tr -d '[:blank:]')
.MAIN: test
.PHONY: all clean dependencies help list test
.EXPORT_ALL_VARIABLES: # (2)
RUNTIME_TOOL=python3
PACKAGE_TOOL=pip3
# DOCKER
BUILDKIT_PROGRESS=plain
DOCKER_COMPOSE=docker compose
help: list
@echo ""
@echo "Note: create and activate the environment in your local shell type (example):"
@echo " python3 -m venv ./.venv"
@echo " source .venv/bin/activate"
@echo "See: "
@echo " https://docs.python.org/3/library/venv.html#creating-virtual-environments"
@echo " https://docs.python.org/3/library/venv.html#how-venvs-work"
list:
@LC_ALL=C $(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$'
env:
@echo "################################################################################"
@echo "## Environment: ################################################################"
@echo "################################################################################"
@printenv | grep -E "LOG_LEVEL|BRUTEFORCE|BUILDKIT_PROGRESS"
@echo ""
@echo "################################################################################"
@echo "## Runtime: ####################################################################"
@echo "################################################################################"
@which $(PACKAGE_TOOL)
@which $(RUNTIME_TOOL)
@echo ""
install: dependencies
dependencies:
@echo "################################################################################"
@echo "## Dependencies: ###############################################################"
@echo "################################################################################"
${PACKAGE_TOOL} install -r requirements.txt
@echo "################################################################################"
lint/markdown:
markdownlint '**/*.md' --ignore node_modules && echo '✔ Your code looks good.'
lint/yaml:
yamllint --stric . && echo '✔ Your code looks good.'
lint: lint/markdown lint/yaml test/styling test/static
test/static: dependencies
${RUNTIME_TOOL} -m pylint --verbose --recursive yes src/
${RUNTIME_TOOL} -m flake8 --verbose src/
${RUNTIME_TOOL} -m pyright --verbose src/
test/styling: dependencies
${RUNTIME_TOOL} -m pycodestyle --statistics src/
format:
${RUNTIME_TOOL} -m autopep8 --in-place --recursive --aggressive --aggressive --verbose src/
build: env
rsync -av --prune-empty-dirs \
--exclude '*_test.py' \
--exclude '*.pyc' \
--exclude '.venv' \
--exclude '__pycache__' \
src/ build/
test: env dependencies
${RUNTIME_TOOL} -m coverage run -m \
pytest --verbose \
-o log_cli=true \
--log-cli-level=${LOG_LEVEL} \
--full-trace src/
${RUNTIME_TOOL} -m coverage report
coverage: test
${RUNTIME_TOOL} -m coverage lcov -o coverage/lcov.info
coverage/html: test
${RUNTIME_TOOL} -m coverage html
open htmlcov/index.html
outdated:
${PACKAGE_TOOL} list --outdated
update:
${PACKAGE_TOOL} freeze > requirements.txt
upgrade:
${PACKAGE_TOOL} list --outdated | cut -f1 -d' ' | tr " " "\n" | awk '{if(NR>=3)print}' | cut -d' ' -f1 | xargs -n1 pip3 install -U
clean:
${PACKAGE_TOOL} freeze > unins ; pip3 uninstall -y -r unins ; rm unins
rm -f .coverage
rm -fr .pytest_cache
rm -fr htmlcov
rm -fr coverage
rm -fr build
find . -path "*/*.pyc" -delete -print
find . -path "*/*.pyo" -delete -print
find . -path "*/__pycache__" -type d -print -exec rm -fr {} ';'
compose/build: env
${DOCKER_COMPOSE} --profile lint build
${DOCKER_COMPOSE} --profile testing build
${DOCKER_COMPOSE} --profile production build
compose/rebuild: env
${DOCKER_COMPOSE} --profile lint build --no-cache
${DOCKER_COMPOSE} --profile testing build --no-cache
${DOCKER_COMPOSE} --profile production build --no-cache
compose/lint/markdown: compose/build
${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-py-lint make lint/markdown
compose/lint/yaml: compose/build
${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-py-lint make lint/yaml
compose/test/styling: compose/build
${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-py-lint make test/styling
compose/test/static: compose/build
${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-py-lint make test/static
compose/lint: compose/lint/markdown compose/lint/yaml compose/test/styling compose/test/static
compose/test: compose/build
${DOCKER_COMPOSE} --profile testing run --rm algorithm-exercises-py-test make test
compose/run: compose/build
${DOCKER_COMPOSE} --profile production run --rm algorithm-exercises-py make run
all: lint coverage
run:
ls -alh