Makefile: add convenience targets.

Change-Id: I3e8fcb6d7db87c6b85dc03b801103f41e199c11c
This commit is contained in:
Alexander Lenz 2017-09-13 18:45:16 +02:00
parent 0aa542f07c
commit 88a2230fb7
3 changed files with 28 additions and 14 deletions

4
.gitignore vendored
View File

@ -14,3 +14,7 @@ doc/_build
# Mac
.DS_Store
# pytest
.cache
.coverage

View File

@ -1,17 +1,5 @@
.PHONY: all doc clean test
all: clean doc
clean:
@echo "cleaning pyc files"
@find . -name '*.pyc' -delete
@echo "cleaning html tree"
@rm -rf html
@mkdir html
doc:
$(MAKE) -C doc html
demo:
@bin/secop-server -q demo &
@bin/secop-server -q test &
@ -19,6 +7,27 @@ demo:
@bin/secop-gui localhost:10767 localhost:10768 localhost:10769
@ps aux|grep [s]ecop-server|awk '{print $$2}'|xargs kill
build:
python setup.py build
clean:
find . -name '*.pyc' -delete
rm -rf build
$(MAKE) -C doc clean
install: build
python setup.py install
test:
#@pytest -v --lf -l --tb=auto --setup-plan test/
@pytest -v --lf -l --tb=long --setup-show test/
python $(shell which pytest) -v test
test-verbose:
python $(shell which pytest) -v test -s
test-coverage:
python $(shell which pytest) -v test --cov=secop
doc:
$(MAKE) -C doc html
.PHONY: doc clean test test-verbose test-coverage demo

View File

@ -4,3 +4,4 @@ Sphinx>=1.2.1
# test suite
pytest
pytest-randomly>=1.1
pytest-cov