~testing-cabal/ubuntu/natty/python-testscenarios/daily-build-packaging

1 by Robert Collins
Write some fiction.
1
PYTHONPATH:=$(shell pwd)/lib:${PYTHONPATH}
11.1.4 by Martin Pool
make check now runs doctests and they pass; documentation is therefore more correct
2
PYTHON ?= python
1 by Robert Collins
Write some fiction.
3
16 by Robert Collins
Merge patch from Ben Finney making tests with a shortDescription have that altered as well as the id.
4
all: check
1 by Robert Collins
Write some fiction.
5
6
check:
13 by Robert Collins
Start running tests using testtools.
7
	PYTHONPATH=$(PYTHONPATH) $(PYTHON) -m testtools.run \
8
	    testscenarios.test_suite
1 by Robert Collins
Write some fiction.
9
10
clean:
11
	find . -name '*.pyc' -print0 | xargs -0 rm -f
12
13
TAGS: lib/testscenarios/*.py lib/testscenarios/tests/*.py
14
	ctags -e -R lib/testscenarios/
15
16
tags: lib/testscenarios/*.py lib/testscenarios/tests/*.py
17
	ctags -R lib/testscenarios/
18
19
.PHONY: all check clean