Skip to content

Commit

Permalink
add verbose flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kbarnhart committed Jul 30, 2019
1 parent 7158468 commit b698392
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/appveyor/pypi_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

try:
cmd = ' '.join(['twine', 'upload', '-u', 'katybarnhart', '-p', token,
'dist/*'])
"--verbose", 'dist/*'])
resp = subprocess.check_output(cmd)
except subprocess.CalledProcessError:
traceback.print_exc()
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
script:
- pip install twine wheel
- python setup.py bdist_wheel
- twine upload -u katybarnhart -p$TWINE_PASSWORD dist/*terrainbento*
- twine upload -u katybarnhart -p$TWINE_PASSWORD --verbose dist/*terrainbento*
- <<: *deploy
os: osx
env: CONDA_ENV=3.6
Expand All @@ -53,7 +53,7 @@ jobs:
- docker run --rm -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE /io/.ci/travis/build_wheels.sh
- ls wheelhouse/
- pip install twine
- twine upload -u katybarnhart -p $TWINE_PASSWORD wheelhouse/*terrainbento*manylinux*
- twine upload -u katybarnhart -p $TWINE_PASSWORD --verbose wheelhouse/*terrainbento*manylinux*

before_install:
- |
Expand Down

0 comments on commit b698392

Please sign in to comment.