I\'ve just started using Coverage.py module and so decided to make a simple test to check how it works.
Sample.py
def sum(num1, num2
It's a little hard to parse through your experiments, and you haven't included the command lines you used with each experiment. But: if you run the tests with:
python -m py.test test.py
then you can run them under coverage.py with:
coverage run -m py.test test.py