79620299

Date: 2025-05-13 19:18:05
Score: 0.5
Natty:
Report link

coverage.py tries hard to not measure code in site-packages because generally that is third-party code that you don't want to measure. In addition, you are using --cov=src which means to measure the code in the src directory. Manually copying code into site-packages seems very unusual.

Perhaps you want to use pip install -e . to install your working directory as the libraries runnable code?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Ned Batchelder