Skip to content

Commit 0c0658f

Browse files
authored
Merge pull request #199 from InsightLab/mypy
Mypy
2 parents b2feb65 + 359467d commit 0c0658f

31 files changed

+806
-729
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,7 @@ repos:
3232
'flake8-docstrings==1.6.0',
3333
'pep8-naming==0.11.1'
3434
]
35+
- repo: https://github.com/pre-commit/mirrors-mypy
36+
rev: 'v0.812'
37+
hooks:
38+
- id: mypy

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ clean:
1919
rm -f .coverage
2020

2121
test: clean
22-
pytest
22+
pytest pymove
2323

2424
coverage: clean
25-
coverage run -m pytest
25+
coverage run -m pytest pymove
2626
coverage report
2727

2828
lint: clean
29-
flake8
29+
flake8 pymove
30+
mypy pymove
3031

3132
docs: clean
3233
cp docs/examples/notebooks.rst docs

0 commit comments

Comments
 (0)