When doing mypy checks like the following
It shows me problems based on the flags I give it
When using it with diff-cover it actually fails on any line that I explicitly wanted to ignore with mypy
That means if I do ignore-follow-imports, diff-cover will show problems on changes lines with any imported module
I assume that is because it's not covered, but I'm looking for coverage to take these flags as well
How would I go about doing this?
When doing mypy checks like the following
It shows me problems based on the flags I give it
When using it with diff-cover it actually fails on any line that I explicitly wanted to ignore with mypy
That means if I do ignore-follow-imports, diff-cover will show problems on changes lines with any imported module
I assume that is because it's not covered, but I'm looking for coverage to take these flags as well
How would I go about doing this?