summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2016-05-02 23:49:01 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2016-05-02 23:49:01 -0700
commita391cb26600eb7100ef682baa2ba6fbcb5e0ca10 (patch)
tree6138d76cdbfd064e65285b1dd597126a65b279b7
parentccbc4263016b057db18dc224bdcefcdc3e0ec54b (diff)
downloadnatsort-a391cb26600eb7100ef682baa2ba6fbcb5e0ca10.tar.gz
2nd attempt to fix 2.6 testing bug.
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index d9b0aa2..3fde446 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,6 +31,7 @@ install:
script:
- python -m pytest README.rst docs/source/intro.rst docs/source/examples.rst
- python -m pytest --doctest-modules natsort
-- python -m pytest --cov natsort --flakes --pep8 test_natsort README.rst docs/source/intro.rst docs/source/examples.rst
+- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then python -m pytest --cov natsort test_natsort README.rst docs/source/intro.rst docs/source/examples.rst; fi
+- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then python -m pytest --cov natsort --flakes --pep8 test_natsort README.rst docs/source/intro.rst docs/source/examples.rst; fi
after_success:
coveralls