~lifeless/testtools/helpers

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# See README for copyright and licensing details.

check:
	./run-tests

TAGS:
	ctags -e -R testtools/

tags:
	ctags -R testtools/

clean:
	rm -f TAGS tags testtools/*.pyc testtools/tests/*.pyc


.PHONY: tags TAGS check clean