Files
typeshed/.travis.yml
2016-01-28 11:36:52 -08:00

15 lines
460 B
YAML

sudo: false
language: python
python:
- "3.5"
# More versions later.
install:
- pip install git+git://github.com/JukkaL/mypy
script:
- mypy `find stdlib/{2and3,3*} -name \*.pyi`
# - mypy `find third_party/{2and3,3*} -name \*.pyi`
- mypy --py2 `find stdlib/2* -name \*.pyi | grep -v __builtin__.pyi` # builtins and __builtin__ are aliases
# - mypy --py2 `find third_party/2* -name \*.pyi | grep -v sqlalchemy` # sqlalchemy is currently busted