Permissions: -rw-r--r--
pip := ./venv/bin/pip install -r requirements.txt -r dev-requirements.txt.PHONY: allall: venv/bin/python.PHONY: develdevel: venv $(pip)venv: virtualenv venvvenv/bin/python: | venv $(pip).PHONY: teststests: 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: checkcheck: tests