Add build environment without UTF-8 locales to travis-ci

Preventing regressions like #285
pull/289/head
Wolfgang Walther 5 years ago
parent 8b758d4e7e
commit 03d26dccc7

@ -8,10 +8,14 @@ python:
- 3.7
- 3.8
- nightly
env:
- REMOVE_LOCALES=false
- REMOVE_LOCALES=true
install:
- pip install pyyaml coveralls flake8 flake8-import-order doc8
- if [[ $TRAVIS_PYTHON_VERSION != 2* ]]; then pip install sphinx; fi
- pip install .
- if [[ $REMOVE_LOCALES ]]; then rm -rf /usr/lib/locale/* ; fi
script:
- if [[ $TRAVIS_PYTHON_VERSION != nightly ]]; then flake8 .; fi
- if [[ $TRAVIS_PYTHON_VERSION != 2* ]]; then doc8 $(git ls-files '*.rst'); fi

Loading…
Cancel
Save