My Python project in PyCharm is not showing the run with coverage option. I am using the community edition.
I am using a workaround with some commands like
coverage run --source=./src/processor -m unittest discover -s src/ && coverage report
This gives me the code coverage report but it does not show which line is not covered by the test case.
I want to know if this is a known issue or it is a paid feature. Is there a way to view the uncovered lines?