From f94ff3b54ebd92b3d80196b07603d9590340d4f2 Mon Sep 17 00:00:00 2001 From: Marek Marecki Date: Thu, 22 Aug 2013 11:43:25 +0200 Subject: [PATCH] Added .tarvis.yml file --- .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..58eb5f9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python + +python: + - "3.3" + - "3.2" + - "3.1" + - "3.0" + - "2.7" + +install: + - "pip install -r requirements.txt" + +script: python -m unittest --verbose --catch --failfast tests.py -- 2.25.1