moto/Makefile
Declan Shanaghy b152c00642 Fix multiple bugs encountered with boto3
* Fix path detection for deleting keys in S3 bucket
* Fix stack deletion ensure delete method exists on object
  * Previous tests were using a stack with no resources
* Fix DESCRIBE_STACK_RESOURCES_RESPONSE,
  * Previously untested code path
2016-04-12 13:58:17 -07:00

14 lines
230 B
Makefile

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