commit
284c6e91b9
2 changed files with 9 additions and 2 deletions
9
Makefile
9
Makefile
|
|
@ -18,7 +18,14 @@ test_server:
|
|||
aws_managed_policies:
|
||||
scripts/update_managed_policies.py
|
||||
|
||||
publish:
|
||||
upload_pypi_artifact:
|
||||
python setup.py sdist bdist_wheel upload
|
||||
|
||||
build_dockerhub_image:
|
||||
docker build -t motoserver/moto .
|
||||
|
||||
tag_github_release:
|
||||
git tag `python setup.py --version`
|
||||
git push origin `python setup.py --version`
|
||||
|
||||
publish: upload_pypi_artifact build_dockerhub_image tag_github_release
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -24,7 +24,7 @@ extras_require = {
|
|||
|
||||
setup(
|
||||
name='moto',
|
||||
version='1.1.12',
|
||||
version='1.1.13',
|
||||
description='A library that allows your python tests to easily'
|
||||
' mock out the boto library',
|
||||
author='Steve Pulec',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue