Files
deb-python-fixtures/Makefile
Robert Collins 797b17bc3a Migrate to git and pbr.
No functional changes.
2014-09-25 15:01:50 +12:00

18 lines
290 B
Makefile

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