This patch turns on 100% coverage across all environments, and posts those results to Coveralls. Python 3.3 doesn't currently achieve 100% coverage; that will be fixed shortly.
16 lines
276 B
YAML
16 lines
276 B
YAML
language: python
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- 3.3
|
|
- pypy
|
|
install:
|
|
- pip install -r tools/test-requires --use-mirrors
|
|
- pip install coveralls
|
|
- python setup.py install
|
|
script: nosetests
|
|
after_success: coveralls
|
|
notifications:
|
|
email:
|
|
- kurt.griffiths@rackspace.com
|