Closed
Description
mypy -i
is slower than expected in the following scenario:
- Check out fresh mypy repository
- Create tiny module
mypy.x
that generates an error:echo '1 + ""' > mypy/x.py
- Run
mypy -i mypy
- This takes a while, generates an error for
mypy/x.py
as expected
- This takes a while, generates an error for
- Run
mypy -i mypy
- This is as slow as the previous run, but caching should make this much faster