File: Makefile

package info (click to toggle)
python-fixtures 0.3.6-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 240 kB
  • sloc: python: 989; makefile: 23
file content (19 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
PYTHONPATH:=$(shell pwd)/lib:${PYTHONPATH}
PYTHON ?= python

all: check

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

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

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

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

.PHONY: all check clean