generated from app-sre/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
49 lines (38 loc) · 1.32 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
CONTAINER_ENGINE ?= $(shell which podman >/dev/null 2>&1 && echo podman || echo docker)
.PHONY: format
format:
uv run ruff check
uv run ruff format
terraform fmt terraform
.PHONY: image_tests
image_tests:
# hooks must be copied
[ -d "hooks" ]
# sources must be copied
[ -d "$$TERRAFORM_MODULE_SRC_DIR" ]
# test the terrform providers are downloaded
[ -d "$$TF_PLUGIN_CACHE_DIR/registry.terraform.io/hashicorp/aws" ]
# test all files in ./hooks are executable
[ -z "$(shell for f in hooks/*; do [ ! -x "$$f" ] && [ "$$f" != "hooks/__init__.py" ] && echo not-executable; done)" ]
.PHONY: code_tests
code_tests:
uv run ruff check --no-fix
uv run ruff format --check
terraform fmt -check=true "$$TERRAFORM_MODULE_SRC_DIR"
uv run mypy
uv run pytest -vv --cov=er_aws_msk --cov=hooks --cov-report=term-missing --cov-report xml
.PHONY: in_container_test
in_container_test: image_tests code_tests
.PHONY: test
test:
$(CONTAINER_ENGINE) build --progress plain -t er-aws-msk:test .
.PHONY: build
build:
$(CONTAINER_ENGINE) build --progress plain --target prod -t er-aws-msk:prod .
.PHONY: dev
dev:
# Prepare local development environment
uv sync
.PHONY: generate-variables-tf
generate-variables-tf:
external-resources-io tf generate-variables-tf er_aws_msk.app_interface_input.AppInterfaceInput --output terraform/variables.tf