Created
April 30, 2015 10:51
-
-
Save davidszotten/75de9927082096eff876 to your computer and use it in GitHub Desktop.
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
| $ cat covtest.py | |
| import requests | |
| requests.get('http://www.google.com') | |
| $ coverage run -L covtest.py ; coverage report | |
| Name Stmts Miss Cover | |
| -------------------------------- | |
| covtest.py 2 0 100% | |
| $ coverage run -L covtest.py ; coverage report requests | |
| Name Stmts Miss Cover | |
| --------------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment