We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaf8530 commit 48dfa97Copy full SHA for 48dfa97
2 files changed
.github/workflows/mypy.yml
@@ -14,8 +14,6 @@ jobs:
14
with:
15
python-version: '3.x'
16
- run: pip install mypy
17
- - name: Install type stubs for third-party packages
18
- run: mypy --install-types src
19
- - name: mypy main
20
- run: mypy --ignore-missing-imports src
+ - name: Type checking and install type stubs for third-party packages
+ run: mypy --install-types --non-interactive src
21
pyproject.toml
@@ -104,3 +104,4 @@ exclude = ["prov/tests/*"]
104
module = "prov.*"
105
disallow_untyped_defs = true
106
check_untyped_defs = true
107
+ignore_missing_imports = true
0 commit comments