Hi Guys
I was trying to use the python package (coverage) to check unit test coverage in odoo but i don't know how to use it with odoo, for example :
def test_18_functionality:
import coverage
cov = coverage.Coverage()
cov.start()
# call testing methods ....
cov.stop()
cov.save()
cov.html_report()
is there any idea on how to check that i covered my unit tests ?
Thanks