From c929812f7ad0a1367574a60ac2f47611322339e0 Mon Sep 17 00:00:00 2001 From: Chris Down Date: Sun, 6 Sep 2015 20:03:44 +0100 Subject: [PATCH] Add Travis CI configuration --- .travis.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d2f1eab --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: python +python: + - 2.7 + - 3.3 + - 3.4 + - 3.5.0b3 + +install: + - 'pip install -r requirements.txt' + - 'pip install -r tests/requirements.txt' + +script: + - 'python setup.py test' + +matrix: + fast_finish: true + +# This is required to enable container based Travis CI infrastructure. +# See http://docs.travis-ci.com/user/migrating-from-legacy/ +sudo: false