From c6f15133cf94c3acb391e53e1c3474f6632688bb Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 26 Jan 2016 16:50:47 -0800 Subject: [PATCH] Add a Travis CI configuration. --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..8ec6d7a45 --- /dev/null +++ b/.travis.yml @@ -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.