Skip to content

Commit 7137105

Browse files
authored
Merge pull request #146 from jepler/restore-typechecking
2 parents 5afa43e + b859900 commit 7137105

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ jobs:
5555
python -mpip install wheel
5656
python -mpip install -r requirements-dev.txt
5757
58+
- name: Check stubs
59+
if: (! startsWith(matrix.python-version, 'pypy-'))
60+
run: make mypy PYTHON=python
61+
5862

5963
test:
6064
strategy:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ test_venv:
4444

4545
.PHONY: mypy
4646
mypy:
47-
$(Q)mypy --strict --no-warn-unused-ignores src
47+
$(Q)mypy --strict --no-warn-unused-ignores src test
4848

4949
.PHONY: update
5050
update:

0 commit comments

Comments
 (0)