Skip to content

Instantly share code, notes, and snippets.

@fhightower
Last active June 30, 2017 00:56
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 fhightower/8fa75677e0aa3d9c5e4c06d9c6c02da0 to your computer and use it in GitHub Desktop.
Save fhightower/8fa75677e0aa3d9c5e4c06d9c6c02da0 to your computer and use it in GitHub Desktop.
Simple .travis.yml
language: python
python: 3.5
branches:
only:
- master
# before_install:
install:
- pip install requests
- pip install pytest
- pip install pytest-cov
- pip install codecov
script:
- py.test --cov=./
after_success:
- codecov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment