Skip to content

Commit 98d6352

Browse files
committed
ignore missing imports mypy
1 parent e675ebd commit 98d6352

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/_extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@t.test(1000)
1010
def mypy_ok(test):
1111
def testMethod():
12-
p = subprocess.run(['mypy', '--strict', test.fileName], capture_output=True, universal_newlines=True)
12+
p = subprocess.run(['mypy', '--strict', '--ignore-missing-imports', test.fileName], capture_output=True, universal_newlines=True)
1313
return p.returncode == 0, p.stdout
1414

1515
def report(output):

0 commit comments

Comments
 (0)