-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
73 lines (56 loc) · 1.75 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
.DEFAULT_GOAL := help
define PRINT_HELP_PYSCRIPT
import re, sys
for line in sys.stdin:
match = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line)
if match:
target, help = match.groups()
print("%-40s %s" % (target, help))
endef
export PRINT_HELP_PYSCRIPT
help: install-hooks
@python -c "$$PRINT_HELP_PYSCRIPT" < Makefile
.PHONY: install-hooks
install-hooks: ## Install repo hooks
@echo "Checking and installing hooks"
@test -d .git/hooks || (echo "Looks like you are not in a Git repo" ; exit 1)
@test -L .git/hooks/pre-commit || ln -fs ../../hooks/pre-commit .git/hooks/pre-commit
@chmod +x .git/hooks/pre-commit
.PHONY: test
test: ## Run tests on the module
rm -f test_data/test_module/.terraform.lock.hcl
#rm -rf test_data/test_module/.terraform
pytest -xvvs tests/
.PHONY: bootstrap
bootstrap: install-hooks ## bootstrap the development environment
pip install -U "pip ~= 23.1"
pip install -U "setuptools ~= 68.0"
pip install -r requirements.txt
.PHONY: clean
clean: ## clean the repo from cruft
rm -rf .pytest_cache
find . -name '.terraform' -exec rm -fr {} +
.PHONY: fmt
fmt: format
.PHONY: format
format: ## Use terraform fmt to format all files in the repo
@echo "Formatting terraform files"
terraform fmt -recursive
black tests
define BROWSER_PYSCRIPT
import os, webbrowser, sys
from urllib.request import pathname2url
webbrowser.open("file://" + pathname2url(os.path.abspath(sys.argv[1])))
endef
export BROWSER_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"
.PHONY: docs
docs: ## generate Sphinx HTML documentation, including API docs
$(MAKE) -C docs clean
$(MAKE) -C docs html
$(BROWSER) docs/_build/html/index.html
.PHONY: lint
lint: ## Lint the module
@echo "Check code style"
black --check tests
terraform fmt -check