-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
28 lines (22 loc) · 824 Bytes
/
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
.PHONY : install shell format lint test test/cov
# Install dependencies with poetry
install:
@poetry install --with dev -v
# Run poetry shell
shell:
@poetry shell
# Run formatters (black, isort) with poetry
format:
@poetry run isort drf_simple_api_errors test_project
@poetry run black drf_simple_api_errors test_project
# Check format (black, isort) and linting (flake8)
lint:
@poetry run isort --check drf_simple_api_errors test_project
@poetry run black --check drf_simple_api_errors test_project --exclude migrations
@poetry run flake8 drf_simple_api_errors test_project --max-line-length 88
# Run unittests with poetry
test:
@poetry run pytest test_project
# Run code coverage tests coverage with poetry
test/cov:
@poetry run pytest test_project --cov=drf_simple_api_errors --cov-report xml:coverage.xml