dmypy ignores flags and config file
Bug Report
dmypy ignores flags and config file https://github.com/python/mypy/pull/11396#issuecomment-1048483794
@sehyun-hwang This seems like a dmypy bug. It seems that dmypy ignores cli flags or config file flags in certain cases.
Here's a file structure:
$ tree . . ├── a.py ├── b.py └── mypy.iniAnd
mypy.inicontains the following:[mypy] strict = True
a.pyandb.pyboth contain:def foo(): passThis way
mypy a.pywon't show errors butmypy --strict a.pywill. When alternating betweendmypy check a.pyanddmypy check b.py, at some pointdmypystops showing strict output. For the same reason it might be forgetting the--outputflag being set as well.
To Reproduce
With the file structure above,
Expected Behavior
--strict flag and other arguments should be applied.
Actual Behavior
--strict flag of the last command gets ignored.
root@f24a1f5cf5c6:/mnt# dmypy run -- --strict foo.py
Daemon started
foo.py:1: error: Function is missing a return type annotation
foo.py:1: note: Use "-> None" if function does not return a value
Found 1 error in 1 file (checked 25 source files)
root@f24a1f5cf5c6:/mnt# dmypy run -- --strict bar.py
bar.py:1: error: Function is missing a return type annotation
bar.py:1: note: Use "-> None" if function does not return a value
Found 1 error in 1 file (checked 1 source file)
root@f24a1f5cf5c6:/mnt# dmypy run -- --strict foo.py
Success: no issues found in 1 source file
Your Environment
- Mypy version used: Latest version hosted in pip
- Mypy command-line flags:
--strict - Mypy configuration options from
mypy.ini(and other config files):strict = trueor no config file - Python version used: 3.10
- Operating system and version: Latest Python Docker image
Is there a workaround for this issue? I'd really like to use dmypy on a project I'm working on (as it will speed up our CI job considerably compared to mypy), but I need to be able to set options in a config file.
We have the same problem, first execution dmypy run -- --config-file mypy.ini uses the --config-file, but second run doesn't
Maybe a bug in the arg parsing: https://github.com/python/mypy/blob/master/mypy/dmypy/client.py#L256
I have the same issue! Really a bummer in terms of productivity :/
Hello all 👋 ,
I've made some progress in understanding the problem. For us the problem is that between two git pulls the daemon checks only the changed files (I think that's normal behavior), but outputs lots of errors that there wasn't in the first run (not sure why, that's the problem) or errors that are not present when running mypy alone
How to reproduce (for me)
- Run
dmypy run -- --config-file mypy.ini-
Success: no issues found in 4051 source files
-
- Use
git pullto get changes - Run
dmypy recheck-
Found 102 errors in 16 files (checked 4051 source files) - (running
mypyalone doesn't output errors) - (the problem is also present with using
dmypy run -- --config-file mypy.iniagain)
-
The problem
- Second run of
dmypyfails with errors that are wrong - Hypothesis: second run of
dmypydoesn't use the context from the previous run for type information- (only uses the changed files in isolation, so there's a lot missing)
What I tried
- I thought the arg parsing was at fault, I debugged the code and I'm sure it is good
- I think the problem is likely in the code of:
fine_grained_increment_follow_imports(here) which is called on the second run and subsequent
- I think the problem is likely in the code of:
- I also tried forcing
dmypyto use all the files by usingdmypy recheck --update <ALL THE ROOT FOLDERS>- But mypy crashes with
IsADirectoryError: [Errno 21] Is a directory: 'apps'(doesn't support folders) - (I might try to add folder support, or recursively go through the folders to find the files)
- But mypy crashes with
I'm out of ideas, hope it helps one of you to have a look
Update
- I've tried all the variations of
dmypy recheck --update <LIST OF FILES>anddmypy check <LIST OF FILES>and it doesn't help
Latest update
In the hopes this will help someone days of trial and errors and debugging: we found a workaround
The problem described above here (dmypy second run outputs errors that aren't present) is NOT present if dmypy uses a pre-build fine-grained cache
Solution:
-
mypy --cache-fine-grained --config-file mypy.ini -
dmypy run -- --use-fine-grained-cache --config-file mypy.ini - (later runs of
dmypyhas no issues, even whengit pulland stuff)
Same problem here, really a problem as the errors in vscode are different than when running mypy