Files

15 lines
236 B
Makefile

.PHONY: test compile check package
PYTHON ?= python3
test:
PYTHONPATH=src:. $(PYTHON) -m unittest discover -s tests -t . -v
compile:
$(PYTHON) -m compileall -q src tests
check: compile test
package:
dpkg-buildpackage -us -uc -b