From b87184bcea055130eb1e68e6c2756013a126cee1 Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Wed, 9 Sep 2015 05:46:01 +0000 Subject: [PATCH] testing: Add Travis support --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9e9e3b8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +sudo: false +language: python +python: + #- "2.6" + #- "2.7" + #- "3.2" + - "3.3" + - "3.4" +install: + - pip install -r requirements.txt + - pip install --editable . +script: py.test +cache: pip