Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chen0040/d12e0fadd47df52af5374346774c82e5 to your computer and use it in GitHub Desktop.
Save chen0040/d12e0fadd47df52af5374346774c82e5 to your computer and use it in GitHub Desktop.
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
@AvinashDalvi89
Copy link

Thanks this help me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment