--- /dev/null Thu Jan 01 00:00:00 1970 +0000+++ b/Makefile Tue Nov 28 12:14:11 2017 +0800@@ -0,0 +1,27 @@+pip := ./venv/bin/pip install -r requirements.txt -r dev-requirements.txt++.PHONY: all+all: venv/bin/python++.PHONY: devel+devel: venv+ $(pip)++venv:+ virtualenv venv++venv/bin/python: | venv+ $(pip)++.PHONY: tests+tests: venv/bin/python+ ./venv/bin/python ./run-tests.py -v \+ --cov-report=term \+ --cov=candolint \+ --cov=incoming \+ --cov=viewer \+ --cov=checker \+ --cov=hooks-queue++.PHONY: check+check: tests