.PHONY: test compile check package

PYTHON ?= python3

test:
	$(PYTHON) -m unittest discover -s tests -v

compile:
	$(PYTHON) -m compileall -q src tests

check: compile test

package:
	dpkg-buildpackage -us -uc -b
