We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cfb395 commit 0194eb3Copy full SHA for 0194eb3
.travis.yml
@@ -108,7 +108,10 @@ install:
108
- if [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]]; then pip install mistune==0.8.4; fi
109
- if [[ $TRAVIS_PYTHON_VERSION != "3.4"* && $TRAVIS_PYTHON_VERSION != "2."* ]]; then pip install Markdown; fi
110
- pip install markdown2
111
- - pip install brotli zstd
+ - pip install brotli
112
+ # zstd fails to build under python nightly aborting test.
113
+ # allow testing to still happen if the optional package doesn't install.
114
+ - pip install zstd || exit 0
115
116
before_script:
117
# set up mysql database
0 commit comments