moto/Makefile
2015-02-24 18:00:28 -05:00

13 lines
203 B
Makefile

SHELL := /bin/bash
init:
@python setup.py develop
@pip install -r requirements.txt
test:
rm -f .coverage
@nosetests -sv --with-coverage ./tests/
publish:
python setup.py sdist bdist_wheel upload