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
- Run
mypy -i mypy
- This is as slow as the previous run, but caching should make this much faster
mypy -iis slower than expected in the following scenario:mypy.xthat generates an error:echo '1 + ""' > mypy/x.pymypy -i mypymypy/x.pyas expectedmypy -i mypy