generated from ONSdigital/ons-python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
66 lines (53 loc) · 1.57 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
.DEFAULT_GOAL := all
.PHONY: all
all: ## Show the available make targets.
@echo "Usage: make <target>"
@echo ""
@echo "Targets:"
@fgrep "##" Makefile | fgrep -v fgrep
.PHONY: clean
clean: ## Clean the temporary files.
rm -rf .pytest_cache
rm -rf .mypy_cache
rm -rf .coverage
rm -rf .ruff_cache
rm -rf megalinter-reports
.PHONY: format
format: ## Format the code.
poetry run black .
poetry run ruff check . --fix
.PHONY: lint
lint: ## Run all linters (black/ruff/pylint/mypy).
poetry run black --check .
poetry run ruff check .
make mypy
.PHONY: test
test: ## Run the tests and check coverage.
poetry run pytest -n auto --cov=src --cov-report term-missing --cov-fail-under=100
.PHONY: mypy
mypy: ## Run mypy.
poetry run mypy src
.PHONY: install
install: ## Install the dependencies excluding dev.
poetry install --only main
.PHONY: install-dev
install-dev: ## Install the dependencies including dev.
poetry install
.PHONY: megalint
megalint: ## Run the mega-linter.
docker run --platform linux/amd64 --rm \
-v /var/run/docker.sock:/var/run/docker.sock:rw \
-v $(shell pwd):/tmp/lint:rw \
oxsecurity/megalinter:v7
.PHONY: run
run: ## Start the local application.
poetry run uvicorn src.main:app --reload --port 5010
.PHONY: docker-build
docker-build: ## Build the docker image.
docker build -t cir-converter-service .
.PHONY: docker-compose-up
docker-compose-up: ## Start the docker container using docker-compose.
docker-compose up -d
.PHONY: docker-compose-down
docker-compose-down: ## Stop the docker container using docker-compose.
docker-compose down