Saturday 13 June 2009 — This is over 15 years old. Be careful.
Coverage.py v3.0 is done. There are new docs up, and final kits. The main change since beta 3 was how the standard library is excluded. I was being too aggressive, and sometimes excluding all the product code as well, depending on the layout of the project. Now it behaves much better.
If you haven’t been keeping up with the changes since coverage.py 2.x, there are plenty of them, including greatly improved speed and a nice HTML reporting feature.
Comments
Have you also incorporated C code coverage into it? Coz from the report I see on http://coverage.livinglogic.de/ there are reports for a number of C sources too.
import sys
sys.setrecursionlimit(2500)
def add1(number = 0):
number = number + 1
if(number < 2000):add1(number)
if __name__ == '__main__':
add1()
Thanks.
Add a comment: