Commit 476c3335 authored by Luke Macken's avatar Luke Macken

Skip running coveralls on py2.5.

Thanks to https://gist.github.com/ssokolow/5496286
parent 74166ac2
...@@ -9,11 +9,11 @@ python: ...@@ -9,11 +9,11 @@ python:
install: install:
- python setup.py install - python setup.py install
- pip install coveralls --use-mirrors - if [[ $TRAVIS_PYTHON_VERSION != '2.5' ]]; then pip install coveralls --use-mirrors && export HAS_COVERALLS=1; fi
script: script:
- sudo apt-get install -qq gdb - sudo apt-get install -qq gdb
- nosetests -q --with-coverage --cover-erase --cover-package=pyrasite - nosetests -q --with-coverage --cover-erase --cover-package=pyrasite
after_success: after_success:
- coveralls - if [[ $HAS_COVERALLS ]]; then coveralls; fi
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment