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
|
|
|
|
2017-03-13 00:18:49 +00:00
|
|
|
lint:
|
|
|
|
flake8 moto
|
|
|
|
|
2017-03-13 00:37:23 +00:00
|
|
|
test: lint
|
2013-03-15 15:21:03 +00:00
|
|
|
rm -f .coverage
|
2016-03-31 20:33:13 +00:00
|
|
|
rm -rf cover
|
|
|
|
@nosetests -sv --with-coverage --cover-html ./tests/
|
2013-06-27 13:35:46 +00:00
|
|
|
|
2017-02-24 00:43:48 +00:00
|
|
|
test_server:
|
|
|
|
@TEST_SERVER_MODE=true nosetests -sv --with-coverage --cover-html ./tests/
|
|
|
|
|
2015-02-22 15:58:51 +00:00
|
|
|
publish:
|
|
|
|
python setup.py sdist bdist_wheel upload
|
2017-08-26 06:44:03 +00:00
|
|
|
git tag $(python setup.py version)
|
|
|
|
git push push origin $(python setup.py version)
|