mirror of https://github.com/avast/PurpleDome
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
387 B
Makefile
22 lines
387 B
Makefile
# Makefile for standard actions
|
|
#
|
|
#
|
|
|
|
.PHONY: test init deinit shipit pylint
|
|
|
|
test: tox.ini
|
|
tox;
|
|
coverage html;
|
|
coverage report;
|
|
|
|
shipit: test
|
|
cd doc; make zip; cd ..
|
|
git log --pretty="format: %aD %an: %s" > shipit_log.txt
|
|
python3 tools/shipit.py
|
|
|
|
# More detailed pylint tests.
|
|
pylint:
|
|
pylint --rcfile=pylint.rc *.py app/*.py plugins/base/*.py
|
|
|
|
mypy:
|
|
mypy --strict-optional app/
|