-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add mypy excludes for collect_ignore entries #160
Comments
… altering the file.
I think mypy is following this import. |
Oh, right. I hadn't considered that the checking has to be done holistically. Yeah, that makes sense. I did find that I could suppress the errors by configuring the project to ignore types for that module. I guess it's conceivable that pytest-mypy could translate the |
I've found another project affected by this issue: keyrings.alt. This project has a module
|
Ya, also likely because of this import... It's actually interesting to see that $ tree
.
├── Pipfile
├── Pipfile.lock
└── pkg
├── alt
│ ├── bad.py
│ └── __init__.py
└── __init__.py
2 directories, 5 files
$ pipenv run pytest --mypy
====================== test session starts =======================
platform linux -- Python 3.8.18, pytest-8.3.2, pluggy-1.5.0
rootdir: /tmp/tmp.JDvY0VQIdT
plugins: mypy-0.10.3
collected 4 items
pkg/__init__.py .F [ 50%]
pkg/alt/__init__.py . [ 75%]
pkg/alt/bad.py F [100%]
============================ FAILURES ============================
__________________________ test session __________________________
mypy exited with status 1.
_________________________ pkg/alt/bad.py _________________________
1: error: Incompatible types in assignment (expression has type "str", variable has type "int") [assignment]
============================== mypy ==============================
Found 1 error in 1 file (checked 3 source files)
==================== short test summary info =====================
FAILED pkg/__init__.py::mypy-status
FAILED pkg/alt/bad.py::mypy
================== 2 failed, 2 passed in 1.16s =================== $ echo 'collect_ignore = ["pkg/alt/bad.py"]' > conftest.py
$ pipenv run pytest --mypy
====================== test session starts =======================
platform linux -- Python 3.8.18, pytest-8.3.2, pluggy-1.5.0
rootdir: /tmp/tmp.JDvY0VQIdT
plugins: mypy-0.10.3
collected 4 items
conftest.py .. [ 50%]
pkg/__init__.py . [ 75%]
pkg/alt/__init__.py . [100%]
============================== mypy ==============================
Success: no issues found in 3 source files
======================= 4 passed in 0.29s ======================== That is because the plugin only creates |
The jaraco.site project has a file in the tree that's ignored for tests.
However, even with that configuration, the file gets collected and is run by mypy and causes tests to fail:
Is there a way that pytest-mypy can honor collect_ignore?
The text was updated successfully, but these errors were encountered: