Add coveralls script

This commit is contained in:
ssut 2015-07-06 14:22:01 +09:00
parent 238e6f8d1f
commit deb11fd4c4

View File

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