mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-10 03:31:27 +08:00
15 lines
460 B
YAML
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
|