Open DotNetTechSoln opened 2 months ago
I suspect this is something to do with having more than one Python installation. For example, take a look at the output of these commands:
$ which pytest
$ which coverage
$ which python
The best practice is to always run python
as the command:
$ python -m pip install ....
$ python -m pytest
$ python -m coverage run -m pytest
etc
When I am trying to run the test case i am able to run it.using following command
When I am trying to run the following command to see whole line coverage