Skip to content

Commit

Permalink
Drop the PURE_PYTHON travis builds, they're not doing anything.
Browse files Browse the repository at this point in the history
We publish manylinux wheels now and pip will install those. (The same
is probably true for tox, but the end user may be able to control that
better so I'm leaving those environments for now.)

We test PyPy so we do cover the pure environments.
  • Loading branch information
jamadden committed Jun 29, 2017
1 parent 140b137 commit 2e75af3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .travis.yml
Expand Up @@ -2,15 +2,11 @@ language: python
sudo: false
matrix:
include:
- python: 2.7
env: PURE_PYTHON=1
- python: 2.7
env: DOCS=1
# The doctests only run on Python 2.7
- python: 2.7
env: MINIMAL="-t !persistentregistry -t !security"
- python: 3.5
env: PURE_PYTHON=1
python:
- 2.7
- 3.4
Expand All @@ -22,7 +18,7 @@ python:
script:
- coverage run -m zope.testrunner --test-path=src $MINIMAL
- if [[ -n "$DOCS" ]]; then sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html; fi
- if [[ -n "$DOCS" ]]; then sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest; fi
- if [[ -n "$DOCS" ]]; then coverage run `which sphinx-build` -b doctest -d docs/_build/doctrees docs docs/_build/doctest; fi

after_success:
- coveralls
Expand Down

0 comments on commit 2e75af3

Please sign in to comment.