327:8fc9170554d1
Anton Shestakov <av6@dwimlabs.net>, Tue, 28 Nov 2017 12:14:11 +0800
Makefile: add simple targets

next change 328:b0a5ebd86bba

Makefile

Permissions: -rw-r--r--

Other formats: Feeds:
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