-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
executable file
·41 lines (33 loc) · 1.15 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
.DEFAULT_GOAL := help
.PHONY: init
init: ## Init the requirements
$(info --- 🖥 Init dependencies ---)
@poetry install
.PHONY: format
format: ## Format the code
$(info --- 🐍 Check Python format ---)
pre-commit run -a
.PHONY: security
security: ## Run security checks
$(info --- 🐍 Security Python ---)
@poetry run bandit -c pyproject.toml -r .
.PHONY: complexity
complexity: ## Run complexity checks
$(info --- 🐍 Complexity Python ---)
@poetry run radon cc -a tracarbon/
.PHONY: test-unit
test-unit: ## Run unit test
$(info --- 🐍 Run Python test-unit ---)
@poetry run python -m pytest
.PHONY: check-data
check-data: ## Check data of Tracarbon
$(info --- 📍 Checking data ---)
@poetry run python scripts/check_data.py
@echo "👍"
.PHONY: build-documentation
build-documentation: ## Build documentation with Sphinx
$(info --- 📚 Run build of the Sphinx documentation ---)
@poetry run sphinx-build -Wn -b html -d ./docs/build/doctrees ./docs/source ./docs/build/html
.PHONY: help
help: ## List the rules
grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'