Skip to content

Instantly share code, notes, and snippets.

@GenevieveBuckley
Created September 24, 2018 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GenevieveBuckley/56c2143f8d9812b57fff71c099cfc67f to your computer and use it in GitHub Desktop.
Save GenevieveBuckley/56c2143f8d9812b57fff71c099cfc67f to your computer and use it in GitHub Desktop.
Template for Travis CI integration
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