Skip to content

Instantly share code, notes, and snippets.

@akai-tsuki
Created May 5, 2016 03:51
Show Gist options
  • Save akai-tsuki/cd3090348c10fc3e10a832df96bddac1 to your computer and use it in GitHub Desktop.
Save akai-tsuki/cd3090348c10fc3e10a832df96bddac1 to your computer and use it in GitHub Desktop.
sample .travis.yml
language: python
python:
- "2.7"
install:
- pip install -r test-requirements.txt
- pip install coveralls
- pip install codeclimate-test-reporter
script:
- python --version
- python -m unittest discover -v
- coverage run -m unittest discover
after_success:
- coveralls
- codeclimate-test-reporter
@akai-tsuki
Copy link
Author

use this at hatena blog.

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