summaryrefslogtreecommitdiff
path: root/Makefile
blob: 730fbe67e894fbd1566c7132f5e56d0e006fa4df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PYTHON ?= python

all: check

check:
	$(PYTHON) -m testtools.run fixtures.test_suite

clean:
	find . -name '*.pyc' -print0 | xargs -0 rm -f

TAGS: fixtures/*.py fixtures/tests/*.py
	ctags -e -R fixtures/

tags: fixtures/*.py fixtures/tests/*.py
	ctags -R fixtures/

.PHONY: all check clean