Add mypy to CI

This commit is contained in:
Łukasz Langa 2018-03-15 23:17:02 -07:00
parent 5fb5cc8c2b
commit c87b33c4d5

View File

@ -1,9 +1,12 @@
sudo: false sudo: false
language: python language: python
cache: pip
before_script: before_script:
- pip install mypy
- pip install -e . - pip install -e .
# test script script:
script: python setup.py test - python setup.py test
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then mypy black.py; fi
notifications: notifications:
on_success: change on_success: change
on_failure: always on_failure: always