From 52a2efa2ae5d57c13bf6bb13901f1762af20a55a Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Wed, 17 May 2017 19:54:31 -0500 Subject: [PATCH] Avoid verifying the README.rst on Python 2.6 readme-render does not appear to support Python 2.6. This causes tests to fail on Travis' 2.6 environment. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 51fb563e..6d9c8140 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ python: install: "make" # command to run tests script: - - make test-readme + - [[ "$TRAVIS_PYTHON_VERSION" != "2.6" ]] && make test-readme - make coverage after_success: - pipenv run codecov