Advertisement
themoosemind

Usage of coverage.py

Jul 23rd, 2012
771
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. moose@pc07:~/Downloads/algorithms/datastructures$ coverage erase
  2. moose@pc07:~/Downloads/algorithms/datastructures$ coverage run redBlackTree.py
  3. moose@pc07:~/Downloads/algorithms/datastructures$ coverage report --omit=/usr/share/pyshared/argparse
  4. Name Stmts Miss Cover
  5. ------------------------------------------------------------------
  6. /usr/share/pyshared/argparse 1171 815 30%
  7. /usr/share/pyshared/numpy/__config__ 27 13 52%
  8. /usr/share/pyshared/numpy/__init__ 39 8 79%
  9. /usr/share/pyshared/numpy/_import_tools 223 203 9%
  10. /usr/share/pyshared/numpy/add_newdocs 236 0 100%
  11. /usr/share/pyshared/numpy/core/__init__ 29 0 100%
  12. /usr/share/pyshared/numpy/core/_internal 211 170 19%
  13. /usr/share/pyshared/numpy/core/arrayprint 259 221 15%
  14. /usr/share/pyshared/numpy/core/defchararray 243 177 27%
  15. /usr/share/pyshared/numpy/core/defmatrix 265 205 23%
  16. /usr/share/pyshared/numpy/core/fromnumeric 287 232 19%
  17. /usr/share/pyshared/numpy/core/info 3 0 100%
  18. /usr/share/pyshared/numpy/core/memmap 75 59 21%
  19. /usr/share/pyshared/numpy/core/numeric 486 334 31%
  20. /usr/share/pyshared/numpy/core/numerictypes 334 87 74%
  21. /usr/share/pyshared/numpy/core/records 356 319 10%
  22. /usr/share/pyshared/numpy/ctypeslib 170 130 24%
  23. /usr/share/pyshared/numpy/fft/__init__ 6 0 100%
  24. /usr/share/pyshared/numpy/fft/fftpack 116 86 26%
  25. /usr/share/pyshared/numpy/fft/helper 37 31 16%
  26. /usr/share/pyshared/numpy/fft/info 1 0 100%
  27. /usr/share/pyshared/numpy/lib/__init__ 37 0 100%
  28. /usr/share/pyshared/numpy/lib/_datasource 162 127 22%
  29. /usr/share/pyshared/numpy/lib/_iotools 241 207 14%
  30. /usr/share/pyshared/numpy/lib/arraysetops 78 68 13%
  31. /usr/share/pyshared/numpy/lib/arrayterator 69 58 16%
  32. /usr/share/pyshared/numpy/lib/financial 92 77 16%
  33. /usr/share/pyshared/numpy/lib/format 155 141 9%
  34. /usr/share/pyshared/numpy/lib/function_base 794 713 10%
  35. /usr/share/pyshared/numpy/lib/getlimits 121 98 19%
  36. /usr/share/pyshared/numpy/lib/index_tricks 253 192 24%
  37. /usr/share/pyshared/numpy/lib/info 2 0 100%
  38. /usr/share/pyshared/numpy/lib/io 442 410 7%
  39. /usr/share/pyshared/numpy/lib/machar 187 179 4%
  40. /usr/share/pyshared/numpy/lib/polynomial 366 311 15%
  41. /usr/share/pyshared/numpy/lib/scimath 54 35 35%
  42. /usr/share/pyshared/numpy/lib/shape_base 224 200 11%
  43. /usr/share/pyshared/numpy/lib/stride_tricks 44 38 14%
  44. /usr/share/pyshared/numpy/lib/twodim_base 99 86 13%
  45. /usr/share/pyshared/numpy/lib/type_check 103 81 21%
  46. /usr/share/pyshared/numpy/lib/ufunclike 30 23 23%
  47. /usr/share/pyshared/numpy/lib/utils 421 364 14%
  48. /usr/share/pyshared/numpy/linalg/__init__ 5 0 100%
  49. /usr/share/pyshared/numpy/linalg/info 1 0 100%
  50. /usr/share/pyshared/numpy/linalg/linalg 527 487 8%
  51. /usr/share/pyshared/numpy/ma/__init__ 14 0 100%
  52. /usr/share/pyshared/numpy/ma/core 2075 1541 26%
  53. /usr/share/pyshared/numpy/ma/extras 561 483 14%
  54. /usr/share/pyshared/numpy/random/__init__ 9 1 89%
  55. /usr/share/pyshared/numpy/random/info 2 0 100%
  56. /usr/share/pyshared/numpy/testing/__init__ 7 0 100%
  57. /usr/share/pyshared/numpy/testing/decorators 48 44 8%
  58. /usr/share/pyshared/numpy/testing/nosetester 130 95 27%
  59. /usr/share/pyshared/numpy/testing/numpytest 34 25 26%
  60. /usr/share/pyshared/numpy/testing/utils 275 246 11%
  61. /usr/share/pyshared/numpy/version 11 7 36%
  62. redBlackTree 354 304 14%
  63. ------------------------------------------------------------------
  64. TOTAL 12601 9731 23%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement