Skip to content

Commit

Permalink
Fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaljovec committed Nov 22, 2019
1 parent 70410e6 commit f973735
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion deploy/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ echo $TEMP_VERSION
make
python setup.py sdist

# Test the upload
# Test the upload# Test the upload, temporarily disable exit on error, since there is a race
# condition for which build will get this out first, also, re-triggered builds
# would never succeed in this step.
set +e
twine upload --repository-url https://test.pypi.org/legacy/ -u __token__ -p ${PYPI_TOKEN} --non-interactive dist/topopy-${TEMP_VERSION}.tar.gz
set -e

#Give it some time to register internally before trying to install it
sleep 60
Expand Down
2 changes: 2 additions & 0 deletions travis.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

set -e
set -x

Expand Down

0 comments on commit f973735

Please sign in to comment.