We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0bb1fb commit 4bca545Copy full SHA for 4bca545
.github/workflows/mypy.yaml
@@ -38,8 +38,11 @@ jobs:
38
39
- name: Install Dependencies
40
run: |
41
- pip install mypy==1.11.1 mypy_baseline==0.7.1
+ pip install mypy==1.11.1 mypy_baseline==0.7.1 types-setuptools
42
43
- name: Run mypy
44
+ # To update the baseline run:
45
+ # mypy | mypy-baseline sync --ignore-categories=note
46
+ # then commit mypy-baseline.txt
47
run: >-
- mypy | mypy-baseline filter
48
+ mypy | mypy-baseline filter --ignore-categories=note
0 commit comments