I want to get the code coverage of a python file say "Test.py". Now, when I write the script for this using coverage.py, it looks like this,
import coverage
cov = coverage.Coverage()
cov.start()
#pass the data
cov.stop()
cov.save()
cov.html_report()
now in place of pass the data, I want to pass Test.py, How can I do this?
