2013-02-18 16:09:40 -05:00
|
|
|
SHELL := /bin/bash
|
|
|
|
|
|
|
|
init:
|
|
|
|
python setup.py develop
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
|
|
|
test:
|
2013-02-18 21:22:03 -05:00
|
|
|
nosetests --with-coverage ./tests/ --cover-package=moto
|
2013-02-18 16:09:40 -05:00
|
|
|
|
|
|
|
travis:
|
|
|
|
nosetests ./tests/
|