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
[case testDeletedModuleFromImport]
# flags: --ignore-missing-imports
from a import b
[file a/__init__.py]
[file a/b.py]
[delete a/b.py.2]
while it would if not incremental, saying that a has no attribute b.
The issue here is that the cache indicates that a.b is a module, and so we think of it as a missing module import, which we ignore, and not a missing attribute import, which we report.
This caused a divergence between incremental and full modes that broke our build.
(This seems similar to #4698 but I don't /think/ it is actually related.)
The text was updated successfully, but these errors were encountered:
The following test produces no errors:
while it would if not incremental, saying that
a
has no attributeb
.The issue here is that the cache indicates that
a.b
is a module, and so we think of it as a missing module import, which we ignore, and not a missing attribute import, which we report.This caused a divergence between incremental and full modes that broke our build.
(This seems similar to #4698 but I don't /think/ it is actually related.)
The text was updated successfully, but these errors were encountered: