b152c00642
* 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
14 lines
230 B
Makefile
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
|