summaryrefslogtreecommitdiff
path: root/Makefile
blob: 859ad708f6439d649148806b27f468d86ea293c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PYTHONPATH:=$(shell pwd):${PYTHONPATH}
PYTHON ?= python

all: check

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

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

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

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

release:
	python setup.py sdist bdist_wheel upload -s

.PHONY: all check release