Created
September 24, 2018 06:00
-
-
Save GenevieveBuckley/56c2143f8d9812b57fff71c099cfc67f to your computer and use it in GitHub Desktop.
Template for Travis CI integration
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.4" | |
- "3.5" | |
- "3.6" | |
- "3.7" | |
before_install: | |
- pip install -r requirements.txt | |
install: | |
- pip install -e . | |
script: | |
- py.test --cov . | |
after_success: | |
coveralls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment