| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
| https://codecov.io/ | @codecov | hello@codecov.io |
|---|
Example of how to integrate with Codecov.io for your awesome Python project!
pip install codecov
codecov --token=<repo token>codecov --min-coverage=75if coverage is under 75 codecov will trigger your build to fail
Append to your .travis.yml
install:
pip install codecov
after_success:
codecovStart testing with Travis
Append to your Test Commands after your test commands
pip install codecov
codecov --token=<repo token>Start testing with Codeship
Append to your circle.yml file
test:
post:
- pip install codecov
- codecov --token=<repo token>Start testing with Circle CI
| Back | FazBrowse Home | New Git URL |