Skip to content
Snippets Groups Projects
Commit 4fe78e80 authored by Donald Stufft's avatar Donald Stufft
Browse files

Don't use coveralls

parent 6fb02086
Branches
Tags
No related merge requests found
language: python language: python
python: 2.7 python: 2.7
env: env:
- TOX_ENV=py26 - TOXENV=py26
- TOX_ENV=py27 - TOXENV=py27
- TOX_ENV=py32 - TOXENV=py32
- TOX_ENV=py33 - TOXENV=py33
- TOX_ENV=pypy - TOXENV=pypy
install: install:
- "[[ ${TOX_ENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true" - "[[ ${TOXENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true"
- "[[ ${TOX_ENV} == pypy ]] && sudo apt-get -y update && sudo apt-get -y install pypy || true" - "[[ ${TOXENV} == pypy ]] && sudo apt-get -y update && sudo apt-get -y install pypy || true"
# This is required because we need to get rid of the Travis installed PyPy # This is required because we need to get rid of the Travis installed PyPy
# or it'll take precedence over the PPA installed one. # or it'll take precedence over the PPA installed one.
- "[[ ${TOX_ENV} == pypy ]] && sudo rm -rf /usr/local/pypy/bin || true" - "[[ ${TOXENV} == pypy ]] && sudo rm -rf /usr/local/pypy/bin || true"
- pip install tox coveralls - pip install tox coveralls
script: script:
- tox -e $TOX_ENV - tox -e $TOXENV
after_success:
- coveralls
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment