-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
30 lines (23 loc) · 938 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
29
30
#################################################################################
# GLOBALS #
#################################################################################
PROJECT_NAME = skyro
PYTHON_VERSION = 3.10
PYTHON_INTERPRETER = python
#################################################################################
# COMMANDS #
#################################################################################
## Lint using flake8 and black (use `make format` to do formatting)
.PHONY: lint
lint:
flake8 skyro
isort --check --diff --profile black skyro
black --check --config pyproject.toml skyro
## Format source code with black
.PHONY: format
format:
black --config pyproject.toml skyro
test:
coverage run -m pytest ./tests
coverage: test
coverage report --fail-under=90