-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mypy doesn't recurse through directories, but -h says it does #8548
Comments
I believe this is because you're using namespace packages instead of regular packages. If you try running:
...mypy should detect that you have two source files. The command line docs should have more details about both flags. Alternatively, you could do:
...to convert your package back into a regular one. Then running |
That might fix the above example. But my actual use case is to check any python files regardless of where in the directory hierarchy they appear. So I actually want the recursive behavior described in the help text. |
@rvandegrift Can you give a more concrete example of a directory hierarchy where |
Well, there's no concrete directory hierarchy that lead me here. I wanted to enable mypy on all of our repos via a single script in a shared CI pipeline. The script won't know which repo it's running for ahead of time. And since we're human and messy, we have different layouts in different repos. So I can't supply any One of my team members put together a quick hack to find package roots and run once for each: https://github.com/jceresini/mypy_r I'm not sure that this is a valuable use case. So maybe the only mypy issue is that the help text doesn't describe the actual operation. |
The following directory hierarchy led me to this issue:
So this is a src layout, not a namespace package. As @rvandegrift quoted from the help text:
Based on this statement, I expect that invoking mypy via The description from the online docs is similar, although it doesn't specifically say it finds
I think the words "recursively" and "entire" are strong signals that it will descend down into every directory looking for every
In the case of I understand that I can address the issue by invoking mypy differently. But like @rvandegrift suggested, I think the solution to this particular issue is to update the help text and docs so that they aren't misleading. I suggest removing the references to "recursive", keeping things concise by leaving the directory rules a bit vague, and pointing to where the procedure is described in greater detail. For example, the help text could be changed from:
to:
Links to further documentation are already provided right after the sample command, so no need to add those. And the online docs could be changed from:
to:
If you wanted to provide more details about the directory checking up front, maybe something like this:
|
I find this behaviour highly surprising and unintuitive. We just discovered that this caused a part of our source tree not to be checked for over a year... |
I am convinced. We just need to fix this. Someone please send a PR that makes this properly recursive. There is quite a difference between If it breaks people they can fix it by writing something like |
my layout:
with this layout, the following works (I have not yet found a way to combine the two into one command, for example using the configuration file)
However, this really is a nuisance compared to "Pass in any files or folders you want to type check. Mypy will recursively traverse any provided folders to find .py files"
I agree with rjmorris above, that at least the help and docs need to be updated. I would also appreciate a less cumbersome method to use mypy for a src-layout package tho. |
There is no need to post more evidence to this issue. What we need is someone to volunteer a PR. The code is pretty straightforward (assuming you know how to iterate over directories recursively), it should all be contained in mypy/main.py. |
Fixes python#8548 This is important to fix because it's a really common source of surprising false negatives. I also lay some groundwork for supporting passing in namespace packages on the command line. I wanted to make things work in this PR itself, but it looks like we have some __init__.py assumptions somewhere in build / cache that I'll need to leave for another day (I was surprised to discover fscache._fake_init and secret side effects that the innocuous looking get_init_file seems to have). The approach towards namespace packages that this anticipates is that if you pass in files to mypy and you want mypy to understand your namespace packages, you'll need to specify explicit package roots. We also make many fewer calls to crawl functions, since we just pass around what we need.
Fixes python#8548 This is important to fix because it's a really common source of surprising false negatives. I also lay some groundwork for supporting passing in namespace packages on the command line. The approach towards namespace packages that this anticipates is that if you pass in files to mypy and you want mypy to understand your namespace packages, you'll need to specify explicit package roots. We also make many fewer calls to crawl functions, since we just pass around what we need.
Fixes #8548 This is important to fix because it's a really common source of surprising false negatives. I also lay some groundwork for supporting passing in namespace packages on the command line. The approach towards namespace packages that this anticipates is that if you pass in files to mypy and you want mypy to understand your namespace packages, you'll need to specify explicit package roots. We also make many fewer calls to crawl functions, since we just pass around what we need. Co-authored-by: hauntsaninja <>
According to
mypy -h
:But it doesn't recurse, it only checks what's explicitly provided on the command line:
The fix might be to change the documentation. This is easy to workaround with
find
.The text was updated successfully, but these errors were encountered: