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
I'm investigating remote caching, I find that dmypy is spinning for a very long time when using --use-fine-grained-cache. I've tried dmypy check <file> and it takes 10 minutes before I give up. If I used no caching at all, it would take 1.5 minutes, and give me expected answers.
To Reproduce
produce a cache with mypy --cache-fine-grained --sqlite-cache --no-incremental --cache-dir=...
Bug Report
I'm investigating remote caching, I find that dmypy is spinning for a very long time when using
--use-fine-grained-cache
. I've trieddmypy check <file>
and it takes 10 minutes before I give up. If I used no caching at all, it would take 1.5 minutes, and give me expected answers.To Reproduce
mypy --cache-fine-grained --sqlite-cache --no-incremental --cache-dir=...
% dmypy start --log-file debug.log --timeout=3600 -- --use-fine-grained-cache --cache-dir=<cache> --sqlite-cache --verbose
time dmypy check tools/my_tool.py 2>&1 | ts > log.txt
Expected Behavior
fast checks
Actual Behavior
Seems to spin at 100% cpu for a long time. in the log, I see just a bunch of
for every file in my venv & project. indeed, I see the same modules on repeat:
which makes me think this is stuck in a loop.
Your Environment
mypy.ini
(and other config files):The text was updated successfully, but these errors were encountered: