We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5095b64 commit 9061951Copy full SHA for 9061951
tests/test_pytest_mypy.py
@@ -38,7 +38,7 @@ def test_mypy_ignore_missings_imports(testdir):
38
result = testdir.runpytest_subprocess('--mypy')
39
result.assert_outcomes(failed=1)
40
result.stdout.fnmatch_lines([
41
- '1: error: Cannot find module named*',
+ "1: error: Cannot find *module named 'pytest_mypy'",
42
])
43
assert result.ret != 0
44
result = testdir.runpytest_subprocess('--mypy-ignore-missing-imports')
tox.ini
@@ -66,6 +66,8 @@ deps =
66
mypy0.72: mypy >= 0.720, < 0.730
67
mypy0.73: mypy >= 0.730, < 0.740
68
mypy0.74: mypy >= 0.740, < 0.750
69
+ mypy0.75: mypy >= 0.750, < 0.760
70
+ mypy0.76: mypy >= 0.760, < 0.770
71
mypy0.7x: mypy >= 0.700, < 0.800
72
73
pytest-cov ~= 2.5.1
0 commit comments