-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (25 loc) · 702 Bytes
/
Makefile
File metadata and controls
35 lines (25 loc) · 702 Bytes
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
ci:
poetry run black --check --diff python_project_development tests
poetry run isort --check-only --diff python_project_development tests
poetry run pylint python_project_development tests
poetry run mypy python_project_development tests
clean:
rm -rf dist
deep-clean:
make clean
rm -rf .venv
fmt:
poetry run black python_project_development tests
poetry run isort python_project_development tests
install:
poetry lock --no-update
poetry install
lint:
poetry run pylint python_project_development tests
run:
poetry run python python_project_development/main.py
type:
poetry run mypy python_project_development tests
test:
ENVIRONMENT=test poetry run pytest tests
.PHONY: test