208ad9d11c
To check the code coverage of the unit tests on web, this patch add integration of Coveralls.io (https://coveralls.io/). Usage: 1. Sign in to Coveralls.io with your GitHub account. 2. Add repos at your account page. 3. Execute tests on Travis-CI. Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
22 lines
310 B
YAML
22 lines
310 B
YAML
language: python
|
|
python:
|
|
- "3.5" # Python 3.5 still needs to be installed on Travis-CI
|
|
|
|
env:
|
|
- TOX_ENV=py27
|
|
- TOX_ENV=py34
|
|
- TOX_ENV=py35
|
|
- TOX_ENV=pypy26
|
|
- TOX_ENV=pep8
|
|
|
|
install:
|
|
- pip install tox coveralls
|
|
|
|
script:
|
|
- NOSE_VERBOSE=0 tox -e $TOX_ENV
|
|
|
|
after_success:
|
|
- coveralls
|
|
|
|
sudo: false
|