moto/Makefile

11 lines
152 B
Makefile
Raw Normal View History

2013-02-18 16:09:40 -05:00
SHELL := /bin/bash
init:
@python setup.py develop
@pip install -r requirements.txt
2013-02-18 16:09:40 -05:00
test:
rm -f .coverage
@nosetests -sv --with-coverage ./tests/
2013-06-27 09:35:46 -04:00