Skip to content

Commit

Permalink
Fix Makefile upload task
Browse files Browse the repository at this point in the history
  • Loading branch information
vrcmarcos committed Mar 4, 2019
1 parent 33ec29a commit 57f004b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,14 @@ test_install: install
test: test_install
@py.test --cov-report term-missing --cov=elasticmock

upload:
@python setup.py sdist upload
upload: create_dist
@twine upload dist/*

create_dist: install_twine
@python setup.py sdist upload

install_twine: update_pip
@pip install twine

update_pip:
@pip install --upgrade pip

0 comments on commit 57f004b

Please sign in to comment.