We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94428e8 commit 3feb267Copy full SHA for 3feb267
.github/workflows/check.yml
@@ -53,7 +53,7 @@ jobs:
53
uses: actions/cache@v4
54
with:
55
path: .mypy_cache
56
- key: mypy-${{ runner.os }}-${{ env.python-version }}-${{ hashFiles('src/**/*.py') }}
+ key: mypy-${{ runner.os }}-${{ env.python-version }}-${{ hashFiles('**/*.py') }}
57
restore-keys: mypy-${{ runner.os }}-${{ env.python-version }}-
58
59
- run: make ${{ matrix.task }}
mypy.ini
@@ -2,6 +2,9 @@
2
check_untyped_defs = True
3
disallow_untyped_defs = False
4
ignore_missing_imports = True
5
+incremental = True
6
+cache_dir = .mypy_cache
7
+exclude = cdk.out/
8
9
[mypy-src.*]
10
disallow_untyped_defs = True
0 commit comments