Last active
January 28, 2019 14:36
-
-
Save JayH5/f6167327c8cd59b8927b5734455f1ebc to your computer and use it in GitHub Desktop.
Example Python Travis file
This file contains 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
dist: xenial | |
language: python | |
cache: pip | |
before_install: | |
- pip install --upgrade pip | |
install: | |
- pip install -r requirements/dev.txt | |
- pip install codecov | |
script: | |
- coverage run -m pytest | |
after_success: | |
- codecov | |
matrix: | |
include: | |
- python: '3.7' | |
- python: '3.6' | |
- python: '3.5' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment