Add coveralls script

This commit is contained in:
ssut 2015-07-06 14:22:01 +09:00
parent 238e6f8d1f
commit deb11fd4c4
1 changed files with 5 additions and 2 deletions

View File

@ -5,5 +5,8 @@ python:
- "pypy"
install:
- "pip install ."
- "pip install -r requirements.txt"
script: "python tests.py -v"
- "pip install coveralls"
before_script:
- "pip install -r requirements.txt --use-mirrors"
script: "coverage run --source=py-googletrans test.py -v"
after_success: "coveralls"