summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Morton <seth.m.morton@gmail.com>2019-02-26 21:01:33 -0800
committerSeth Morton <seth.m.morton@gmail.com>2019-02-26 21:10:15 -0800
commit4ccde98f95f1ff5401d500e5ffae2e33f733612d (patch)
tree34fe09faf4846b682ec2d062b518256b699127be
parentb68c6a339764155fc93f937e3fd10a6972e143e2 (diff)
downloadnatsort-4ccde98f95f1ff5401d500e5ffae2e33f733612d.tar.gz
Remove ICU test for MacOS
This takes a LONG time to get started, and with little benefit. It is known that ICU solves all the locale issues in a cross-platform way, so it is only necessary to test against native locale in MacOS.
-rw-r--r--.travis.yml15
1 files changed, 2 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml
index 9e49334..acda714 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -38,7 +38,8 @@ jobs:
- language-pack-de
- language-pack-en
- # For MacOS, only run Python 3.7 with and without "icu"
+ # For MacOS, only run Python 3.7 without "icu" because native locale
+ # handling is poor on MacOS and should be validated.
- python: "3.7"
language: sh
os: osx
@@ -50,18 +51,6 @@ jobs:
- export PYENV_VERSION_STRING="Python ${PYENV_VERSION}"
- wget https://github.com/praekeltfoundation/travis-pyenv/releases/download/0.4.0/setup-pyenv.sh
- source setup-pyenv.sh
- - python: "3.7"
- language: sh
- os: osx
- env:
- - WITH_EXTRAS="icu"
- - TOXENV=py37
- - PYENV_VERSION="3.7.1"
- before_install:
- - brew install icu # need to install icu global package
- - export PYENV_VERSION_STRING="Python ${PYENV_VERSION}"
- - wget https://github.com/praekeltfoundation/travis-pyenv/releases/download/0.4.0/setup-pyenv.sh
- - source setup-pyenv.sh
# This "code-quality" stage does static analysis and formatting checks.
# Platform- and Python-version-independent.