-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
72 lines (53 loc) · 1.58 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
path := .
define Comment
- Run `make help` to see all the available options.
- Run `make lint` to run the linter.
- Run `make lint-check` to check linter conformity.
- Run `dep-lock` to lock the deps in 'requirements.txt' and 'requirements-dev.txt'.
- Run `dep-sync` to sync current environment up to date with the locked deps.
endef
.PHONY: lint
lint: black ruff mypy ## Apply all the linters.
.PHONY: lint-check
lint-check: ## Check whether the codebase satisfies the linter rules.
@echo
@echo "Checking linter rules..."
@echo "========================"
@echo
@black --check $(path)
@ruff $(path)
@echo 'y' | mypy $(path) --install-types
.PHONY: black
black: ## Apply black.
@echo
@echo "Applying black..."
@echo "================="
@echo
@black --fast $(path)
@echo
.PHONY: ruff
ruff: ## Apply ruff.
@echo "Applying ruff..."
@echo "================"
@echo
@ruff --fix $(path)
.PHONY: mypy
mypy: ## Apply mypy.
@echo
@echo "Applying mypy..."
@echo "================="
@echo
@mypy $(path)
.PHONY: help
help: ## Show this help message.
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
.PHONY: test
test: ## Run the tests against the current version of Python.
pytest -v -s
.PHONY: dep-lock
dep-lock: ## Freeze deps in 'requirements.txt' file.
@pip-compile requirements.in -o requirements.txt --no-emit-options
@pip-compile requirements-dev.in -o requirements-dev.txt --no-emit-options
.PHONY: dep-sync
dep-sync: ## Sync venv installation with 'requirements.txt' file.
@pip-sync