diff options
| author | Ian Cordasco <sigmavirus24@users.noreply.github.com> | 2017-05-17 19:54:31 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-17 19:54:31 -0500 |
| commit | 52a2efa2ae5d57c13bf6bb13901f1762af20a55a (patch) | |
| tree | 05aa19d49e43b1ba23f36793e06b8a3f367f80ea | |
| parent | f88e573c18859cbecd9f770b54a3bc894a52bfa0 (diff) | |
| download | python-requests-52a2efa2ae5d57c13bf6bb13901f1762af20a55a.tar.gz | |
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.
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
