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.
PurpleDome/Makefile

18 lines
294 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 html; cd ..
python3 tools/shipit.py
# More detailed pylint tests.
pylint:
pylint --rcfile=pylint.rc *.py app/*.py plugins/base/*.py