python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Pytest-Cov Show Coverage For Untouched Files
When I run my tests, I realised that pytest-cov only shows coverage reports for files that are touched during the automated tests. How can I set it so that it shows coverage for even files that are no...
Daniel
Votes: 0
Answers: 1
How to have pycharm recognizing .coveragerc file?
This question is not a duplicate of How do I configure PyCharm's Coverage checker to recognize .coveragerc? that is very old.
I have a project with a .coveragerc located at the root:
[run]
omit =
...
Floh
Votes: 0
Answers: 0
Report non tested python file in coverage
I am writting the test cases for an existing project and there are multiple python files to be tested, I would like to know the coverage report for all the files under project directory even though th...
Surajit Kundu
Votes: 0
Answers: 0
CoverageWarning: No data was collected when installing module without -e flag
After installing all requirements and installing my_module in editable mode with pip install -e ., pytest passes.
If I instead install my_module with pip install ., pytest fails with:
================...
Batters
Votes: 0
Answers: 0