-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
50 lines (41 loc) · 1.13 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
.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=app --cov-report term-missing --cov-fail-under=100
.PHONY: mypy
mypy: ## Run mypy.
poetry run mypy app
.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