- How to setup Codecov for #
_language_in 30 seconds - How @
_company_uses Codecov to_______ - Learn how to use the top 5 features of Codecov in 30 seconds
- Learn how to use the Codecov browser extension in @github
- Learn how to use
_feature_to enhance your CI testing - Even with 15% code coverage: learn how Codecov can improve code quality and promote best coding practices.
- 5 ways Codecov can make you a stronger programmer
- visualize the impact of tests
- provides quick overview to pull request changes
- ensure tests are written and cover new features
This file contains hidden or 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
| { | |
| "commitid": "c074a88f83ce23c9498755f1b95b2d9a07bf0cf2", | |
| "ci": null, | |
| "coverage": "50.0", | |
| "timestamp": "2015-04-21 00:54:47.853879", | |
| "build_url": null, | |
| "default_branch": "master", | |
| "private": false, | |
| "repo": "example-java", | |
| "owner": "codecov", |
This file contains hidden or 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
| after_success: | |
| - bash <(curl -s https://codecov.io/bash) |
This file contains hidden or 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
| before_install: | |
| - sudo pip install codecov | |
| after_success: | |
| - codecov |
Name must start with a expected version tag ex: v1.4.6. An optional small description is allowed ex: v1.4.6 Custom Title the only these characters are allowed in the title [A-Za-z\d\s\-\:]
- tagged version is not deployed to customer
- pre-release may be available
- available in
Pre Releasefor further testing
This file contains hidden or 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
Show hidden characters
| { | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
| "font_size": 10.0, | |
| "ignored_packages": | |
| [ | |
| "Vintage", | |
| "RestructuredText" | |
| ], | |
| "shift_tab_unindent": true, |
This file contains hidden or 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
| *.pyc | |
| .DS_Store | |
| # Packages | |
| *.egg | |
| *.egg-info | |
| dist | |
| build | |
| eggs | |
| parts |
This file contains hidden or 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
| # Fake caller id broadcast | |
| MYPORT = 3520 | |
| import sys, time, random, datetime | |
| from socket import * | |
| s = socket(AF_INET, SOCK_DGRAM) | |
| s.bind(('', 0)) | |
| s.setsockopt(SOL_SOCKET, SO_BROADCAST, 1) |