We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e9aa0a commit 3a60211Copy full SHA for 3a60211
1 file changed
.travis.yml
@@ -92,14 +92,15 @@ before_script:
92
93
script:
94
- python test/visual.py -q
95
- - if [[ ${COMMIT_MESSAGE} =~ "[publish]" ]]; then
96
- python setup.py bdist_wheel;
97
- if [[ $(uname -s) == 'Linux' ]]; then
98
- export PRE_DISTS='dist/*.whl';
99
- rename 's/linux_x86_64/any/;' $PRE_DISTS;
100
- fi
101
- export DISTS='dist/*';
102
- $(pwd)/mason_packages/.link/bin/twine upload -u $PYPI_USER -p $PYPI_PASSWORD $DISTS ;
+ - |
+ if [[ ${COMMIT_MESSAGE} =~ "[publish]" ]]; then
+ python setup.py bdist_wheel
+ if [[ $(uname -s) == 'Linux' ]]; then
+ export PRE_DISTS='dist/*.whl'
+ rename 's/linux_x86_64/any/;' $PRE_DISTS
+ fi
+ export DISTS='dist/*'
103
+ $(pwd)/mason_packages/.link/bin/twine upload -u $PYPI_USER -p $PYPI_PASSWORD $DISTS
104
fi
105
106
0 commit comments