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.
1 parent c6b7dec commit 553a39fCopy full SHA for 553a39f
Makefile
@@ -1,8 +1,9 @@
1
test_deps:
2
- pip install coverage flake8 wheel
+ pip install coverage flake8 wheel mypy
3
4
lint: test_deps
5
./setup.py flake8
6
+ [[ $$(python --version) > "Python 3.5" ]] && mypy $$(python setup.py --name) --ignore-missing-imports
7
8
test: test_deps lint
9
coverage run --source=$$(python setup.py --name) ./test/test.py
0 commit comments