Add a Travis CI configuration.

This commit is contained in:
Guido van Rossum
2016-01-26 16:50:47 -08:00
parent 920def0b1e
commit c6f15133cf

12
.travis.yml Normal file
View File

@@ -0,0 +1,12 @@
sudo: false
language: python
python:
- "3.5"
# More versions later.
install:
- pip install https://github.com/JukkaL/mypy
script:
- mypy stdlib/3/
# That doesn't test everything, but it's a start.