Merge pull request #146 from jepler/restore-typechecking
This commit is contained in:
commit
7137105b18
2 changed files with 5 additions and 1 deletions
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
|
@ -55,6 +55,10 @@ jobs:
|
||||||
python -mpip install wheel
|
python -mpip install wheel
|
||||||
python -mpip install -r requirements-dev.txt
|
python -mpip install -r requirements-dev.txt
|
||||||
|
|
||||||
|
- name: Check stubs
|
||||||
|
if: (! startsWith(matrix.python-version, 'pypy-'))
|
||||||
|
run: make mypy PYTHON=python
|
||||||
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -44,7 +44,7 @@ test_venv:
|
||||||
|
|
||||||
.PHONY: mypy
|
.PHONY: mypy
|
||||||
mypy:
|
mypy:
|
||||||
$(Q)mypy --strict --no-warn-unused-ignores src
|
$(Q)mypy --strict --no-warn-unused-ignores src test
|
||||||
|
|
||||||
.PHONY: update
|
.PHONY: update
|
||||||
update:
|
update:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue