Created
May 12, 2017 02:40
-
-
Save chen0040/d12e0fadd47df52af5374346774c82e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
python: | |
- "2.7" | |
- "3.3" | |
- "3.4" | |
- "3.5" | |
- "pypy" | |
- "pypy3" | |
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors | |
install: | |
# - "pip install -r requirements.txt --use-mirrors" | |
- "pip install coverage" | |
- "pip install coveralls" | |
# command to run tests, e.g. python setup.py test | |
script: | |
"coverage run -m unittest discover -s . -p '*_unit_test.py'" | |
after_success: | |
coveralls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks this help me.