Skip to content

Commit 04b17b0

Browse files
committed
Include mypy config explicitly in stubtest call
Apparently, stubtest doesn't pick that file up automatically.
1 parent 15e776f commit 04b17b0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,10 @@ jobs:
7979
8080
- name: Check with mypy.stubtest
8181
run: |
82-
python -m mypy.stubtest --allowlist stubtest_allow.txt docstub
82+
python -m mypy.stubtest \
83+
--mypy-config-file pyproject.toml \
84+
--allowlist stubtest_allow.txt \
85+
docstub
8386
8487
- name: Check tests/ with mypy
8588
run: |

0 commit comments

Comments
 (0)