diff options
Diffstat (limited to 'test/3rdparty/testscenarios-0.2/Makefile')
-rw-r--r-- | test/3rdparty/testscenarios-0.2/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/3rdparty/testscenarios-0.2/Makefile b/test/3rdparty/testscenarios-0.2/Makefile new file mode 100644 index 00000000000..c38edf6bfe7 --- /dev/null +++ b/test/3rdparty/testscenarios-0.2/Makefile @@ -0,0 +1,19 @@ +PYTHONPATH:=$(shell pwd)/lib:${PYTHONPATH} +PYTHON ?= python + +all: check + +check: + PYTHONPATH=$(PYTHONPATH) $(PYTHON) -m testtools.run \ + testscenarios.test_suite + +clean: + find . -name '*.pyc' -print0 | xargs -0 rm -f + +TAGS: lib/testscenarios/*.py lib/testscenarios/tests/*.py + ctags -e -R lib/testscenarios/ + +tags: lib/testscenarios/*.py lib/testscenarios/tests/*.py + ctags -R lib/testscenarios/ + +.PHONY: all check clean |