I installed coverage gutter extension for visual studio code but is not showing the line coverage, when I press Coverage Gutter display coverage or press the "watch" option in the footer it says "Could not find coverage file"
In this github doesn't mention anything about configuring a coverage file or anything
https://github.com/ryanluker/vscode-coverage-gutters
this is a code of one of my test I'm using unittest
class Test_SetValuesService(unittest.TestCase):
def test_given_none_property_when_checking_if_none_return_empty(self):
#ASSERT
self.assertEqual(" ", setValuesService.check_if_json_property_is_null(""))
The error that I'm getting is a message that says "Could not find a Coverage file!"