blob: 63a891e951521250949fd734ffb0dae71f11f8fd [file] [log] [blame] [edit]
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
- pypy3
before_install:
- if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip --quiet install unittest2; fi
- pip install --quiet coverage
install:
- python setup.py install
script:
- make test
- coverage run --omit='*/site-packages/*,*/distutils/*' ./test/test.py
- coverage report --show-missing
after_success:
- pip install --quiet coveralls
- coveralls
matrix:
allow_failures:
- python: 2.6
- python: 3.2
- python: pypy