# 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