We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4deb7e commit 26b0234Copy full SHA for 26b0234
1 file changed
crates/zuban_python/tests/mypylike/tests/config.test
@@ -148,12 +148,21 @@ def f():
148
[file pyproject.toml]
149
[tool.mypy]
150
151
-[case auto_mode_should_use_mypy_in_case_of_mypy_config]
+[case auto_mode_should_use_mypy_in_case_of_zuban_config]
152
# flags: --mode auto
153
154
def f():
155
x: int = "" # E: Incompatible types in assignment (expression has type "str", variable has type "int")
156
157
+[file pyproject.toml]
158
+[tool.zuban]
159
+
160
+[case auto_mode_should_use_mypy_in_case_of_mypy_config]
161
+# flags: --mode auto
162
163
+def f():
164
+ x: int = "" # N: By default the bodies of untyped functions are not checked, consider using --check-untyped-defs
165
166
167
168
0 commit comments