You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mypy follows imports when typechecking even when disabled in mypy.ini
To Reproduce
git clone https://github.com/Ryang20718/mypy-repro
cd mypy-repro
python3 -m venv .venv
pip install -r requirements.txt
mypy --timing-stats=out.txt --no-incremental example/c.py
view output file and see time is spent on following numpy imports
Expected Behavior
I'd expect numpy imports to not be followed?
Actual Behavior
based on the timing file, we see time spent on numpy
Bug Report
Mypy follows imports when typechecking even when disabled in mypy.ini
To Reproduce
Expected Behavior
I'd expect numpy imports to not be followed?
Actual Behavior
based on the timing file, we see time spent on numpy
Your Environment
mypy --timing-stats=out.txt --no-incremental example/c.py
mypy.ini
https://github.com/Ryang20718/mypy-repro/blob/main/.mypy.iniThe text was updated successfully, but these errors were encountered: