provide anchor point for test suite using pytest

Change-Id: I22937e22d3f657f95c512393d5fc262bbf6e7eaa
This commit is contained in:
Enrico Faulhaber 2017-05-16 18:16:46 +02:00
parent 8123d21897
commit 780c6779f9
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
.PHONY: all doc clean
.PHONY: all doc clean test
all: clean doc
@ -19,3 +19,7 @@ demo:
@bin/secop-server -q cryo &
@bin/secop-gui localhost:10767 localhost:10768 localhost:10769
@ps aux|grep [s]ecop-server|awk '{print $$2}'|xargs kill
test:
#@pytest -v --lf -l --tb=auto --setup-plan test/
@pytest -v --lf -l --tb=long --setup-show test/

View File

@ -5,4 +5,5 @@ psutil
python-daemon >=2.0
# for zmq interface
#pyzmq>=13.1.0
# for test suite
pytest