From 6113ddc3947c703dd27158b2e136961c867a409a Mon Sep 17 00:00:00 2001 From: Benjamin Perret Date: Sun, 26 May 2019 19:37:52 +0200 Subject: [PATCH] Fix cibuildwheel test being ignored --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a802d75a..6561cbce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -137,9 +137,9 @@ script: ctest -V; else cibuildwheel --output-dir wheelhouse; - python -m pip install twine; fi - if [ -n "$BUILD_WHEEL" -a -n "$TRAVIS_TAG" ]; then + python -m pip install twine && python -m twine upload wheelhouse/*.whl || true; fi