2013-02-18 21:09:40 +00:00
|
|
|
SHELL := /bin/bash
|
|
|
|
|
|
|
|
init:
|
2013-05-03 23:33:13 +00:00
|
|
|
@python setup.py develop
|
|
|
|
@pip install -r requirements.txt
|
2013-02-18 21:09:40 +00:00
|
|
|
|
|
|
|
test:
|
2013-03-15 15:21:03 +00:00
|
|
|
rm -f .coverage
|
2013-05-03 23:33:13 +00:00
|
|
|
@nosetests --with-coverage ./tests/
|