deb-python-funcsigs/.travis.yml
Robert Collins 3306968f41 Cleanup tests:
- always use unittest2
 - remove unneeded boilerplate
 - disable pypy3 in travis, as its currently broken
2016-04-04 16:08:04 +12:00

19 lines
299 B
YAML

language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- nightly
- pypy
# - pypy3
install:
- pip install -U pip setuptools wheel
- pip install -r requirements/development.txt .
script:
- coverage run setup.py test
- coverage report --show-missing
after_success:
- coveralls