diff .travis.yml @ 6624:19897a7ef409

If install of zstd fails, don't abort the test run. zstd is optional. If it fails allow the test run to continue.
author John Rouillard <rouilj@ieee.org>
date Sun, 13 Mar 2022 15:50:07 -0400
parents bae541e5fb26
children a67692d50ede
line wrap: on
line diff
--- a/.travis.yml	Sun Mar 13 10:47:26 2022 -0400
+++ b/.travis.yml	Sun Mar 13 15:50:07 2022 -0400
@@ -108,7 +108,10 @@
   - if [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]]; then pip install mistune==0.8.4; fi
   - if [[ $TRAVIS_PYTHON_VERSION != "3.4"* && $TRAVIS_PYTHON_VERSION != "2."* ]]; then pip install Markdown; fi
   - pip install markdown2
-  - pip install brotli zstd
+  - pip install brotli
+  # zstd fails to build under python nightly aborting test.
+  # allow testing to still happen if the optional package doesn't install.
+  - pip install zstd || exit 0
 
 before_script:
   # set up mysql database

Roundup Issue Tracker: http://roundup-tracker.org/