Suppose I have a python project with tests written in tests/
If I run python -m pytest --cov tests/
that seems to give me code coverage for all files in tests/. If I run python -m pytest --cov=. tests/
that seems to give me coverage results for all files in the project.
When we want code coverage, are we asking for coverage in terms of what the tests cover (so my first CLI should be the one to run) or should results be based on src/ files?