How can I get the backend code coverage report for my unit test cases?
I run the below command for unit test case
bench run-tests
& check how many test cases are passed and how many are failed, but I want to check how many lines are covered in unit test cases; I want to see the code coverage report in percentage or in numbers.
There is a tool called Cypress, but that is the front-end testing tool and is not useful for us.
I’ve already checked how to generate a code coverage report in HTML format, but I couldn’t find any way to get that done in official Frappe documentation.
Can anyone help me out with this?
Thank you