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.
2 parents 5afa43e + b859900 commit 7137105Copy full SHA for 7137105
.github/workflows/test.yml
@@ -55,6 +55,10 @@ jobs:
55
python -mpip install wheel
56
python -mpip install -r requirements-dev.txt
57
58
+ - name: Check stubs
59
+ if: (! startsWith(matrix.python-version, 'pypy-'))
60
+ run: make mypy PYTHON=python
61
+
62
63
test:
64
strategy:
Makefile
@@ -44,7 +44,7 @@ test_venv:
44
45
.PHONY: mypy
46
mypy:
47
- $(Q)mypy --strict --no-warn-unused-ignores src
+ $(Q)mypy --strict --no-warn-unused-ignores src test
48
49
.PHONY: update
50
update:
0 commit comments