We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6b7dec commit 04b5d0eCopy full SHA for 04b5d0e
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
+ if [[ $$(python --version 2>&1) > "Python 3.5" ]]; then mypy $$(python setup.py --name) --ignore-missing-imports; fi
7
8
test: test_deps lint
9
coverage run --source=$$(python setup.py --name) ./test/test.py
0 commit comments