Skip to content

Instantly share code, notes, and snippets.

@davidszotten
Created April 30, 2015 10:51
Show Gist options
  • Select an option

  • Save davidszotten/75de9927082096eff876 to your computer and use it in GitHub Desktop.

Select an option

Save davidszotten/75de9927082096eff876 to your computer and use it in GitHub Desktop.
$ 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