Skip to content

Commit

Permalink
remove pypy-5.3.1 from travis
Browse files Browse the repository at this point in the history
  • Loading branch information
rnixx committed May 12, 2020
1 parent 3fa71f5 commit e233d4c
Showing 1 changed file with 6 additions and 16 deletions.
22 changes: 6 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,11 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "pypy" # PyPy2 2.5.0
- "pypy-5.3.1"
- "pypy"

install:
- |
if [[ $TRAVIS_PYTHON_VERSION != 'pypy-5.3.1' ]]; then
pip install coverage
pip install coveralls
fi
- pip install coverage
- pip install coveralls
- pip install zope.interface
- pip install zope.lifecycleevent
- pip install zope.component
Expand All @@ -27,14 +23,8 @@ install:

script:
- python -m node.ext.ugm.tests.__init__
- |
if [[ $TRAVIS_PYTHON_VERSION != 'pypy-5.3.1' ]]; then
coverage run --source src/node/ext/ugm -m node.ext.ugm.tests.__init__
coverage report
fi
- coverage run --source src/node/ext/ugm -m node.ext.ugm.tests.__init__
- coverage report

after_success:
- |
if [[ $TRAVIS_PYTHON_VERSION != 'pypy-5.3.1' ]]; then
coveralls
fi
- coveralls

0 comments on commit e233d4c

Please sign in to comment.