Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions test-data/unit/cmdline.test
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ dir/subdir/b.py:1: error: Name "undef" is not defined
[file pkg/__init__.py]
[file pkg/a.py]
undef
import a
import pkg.a
[file pkg/subdir/a.py]
undef
import pkg.a
Expand Down Expand Up @@ -306,13 +306,13 @@ mypy.ini: [mypy-*]: Per-module sections should only specify per-module flags (py
[file mypy.ini]
\[mypy]
mypy_path =
foo:bar
, baz
[file foo/foo.pyi]
foo_dir:bar_dir
, baz_dir
[file foo_dir/foo.pyi]
def foo(x: int) -> str: ...
[file bar/bar.pyi]
[file bar_dir/bar.pyi]
def bar(x: str) -> list: ...
[file baz/baz.pyi]
[file baz_dir/baz.pyi]
def baz(x: list) -> dict: ...
[file file.py]
import no_stubs
Expand Down