-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
34 lines (27 loc) · 1.05 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
.PHONY: fmt check style verify tests
fmt: ## Format code with isort and blace
@echo "🚀 Formatting code: Running isort"
@poetry run isort .
@echo "🚀 Formatting code: Running black"
@poetry run black .
check: ## Run code quality tools.
@echo "🚀 Checking Poetry lock file consistency with 'pyproject.toml': Running poetry lock --check"
@poetry check --lock
@echo "🚀 Static type checking: Running mypy -p dream_team_gpt"
@poetry run mypy -p dream_team_gpt
style: ## Run code style checks.
@echo "🚀 Checking code formatting with isort: Running isort --check --diff ."
@poetry run isort --check --diff .
@echo "🚀 Checking code formatting with black: Running black --check --diff ."
@poetry run black --check --diff .
test: ## Test the code with pytest
@echo "🚀 Testing code: Running pytest"
@poetry run pytest tests/
verify: ## Run style and tests
check
style
tests
.PHONY: help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
.DEFAULT_GOAL := help