-
Notifications
You must be signed in to change notification settings - Fork 214
/
Makefile
24 lines (17 loc) · 829 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
PYTHON_FILEPATHS = `(find . -iname "*.py" -not -path "./.venv/*" -not -path "./node_modules/*")`
lint: ## Lint codebase
pdm run pylint --rcfile=pylintrc $(PYTHON_FILEPATHS)
format: ## Run black formatter
pdm run black --check $(PYTHON_FILEPATHS)
format-fix: ## Run black formatter with automated fix
pdm run black $(PYTHON_FILEPATHS)
type-check: ## Run mypy
pdm run mypy $(PYTHON_FILEPATHS)
pycache-delete: ## Delete the __pycache__ folders
find . -type d -name __pycache__ -exec rm -r {} \+
clean: ## Delete cache generated
rm -fr .mypy_cache/ .pytest_cache/ && make pycache-delete
backend-ci: ## Run python corresponding ci
make format && make lint && make type-check
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-25s\033[0m %s\n", $$1, $$2}'