frappy/Makefile
Enrico Faulhaber 780c6779f9 provide anchor point for test suite using pytest
Change-Id: I22937e22d3f657f95c512393d5fc262bbf6e7eaa
2017-05-16 18:17:43 +02:00

26 lines
550 B
Makefile

.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: doc/*.md
@echo "Generating html tree"
@bin/make_doc.py
demo:
@bin/secop-server -q demo &
@bin/secop-server -q test &
@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/