blob: fd8e286c7ac9e61c1f9471aaa32f5d2280c05acf [file] [log] [blame]
.PHONY: all clean package test tox
all: clean test
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
package:
python setup.py sdist
test:
nosetests -v --with-coverage --cover-package=appurify --cover-erase --cover-html --nocapture
tox:
tox -r