forked from SolarEdgeTech/pyctuator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
38 lines (27 loc) · 1.04 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
all: check
help:
@echo "Available targets:"
@echo "- help Show this help message"
@echo "- bootstrap Installs required dependencies"
@echo "- check Runs static code analyzers"
@echo "- test Run unit tests"
@echo "- coverage Check test coverage"
bootstrap:
poetry --version || curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
poetry install
check: pylint mypy
test:
poetry run pytest --log-cli-level=4 -vv tests
coverage:
poetry run pytest --cov-append --cov-report xml:./coverage.xml --cov-report html --cov-report term --cov=pyctuator --log-cli-level=4 -vv tests
pylint:
poetry run pylint --exit-zero pyctuator tests
mypy:
poetry run mypy -p pyctuator -p tests
package:
poetry build
clean:
find . -type d -name __pycache__ -print | xargs rm -rf
find . -type d -name .pytest_cache -print | xargs rm -rf
rm -rf dist htmlcov .mypy_cache
.PHONY: all help bootstrap check test coverage pylint mypy package clean