From cb6332a188273df2085f091724ea2794e160c717 Mon Sep 17 00:00:00 2001 From: Thiago da Silva Date: Tue, 22 Apr 2014 14:15:02 -0400 Subject: [PATCH] adding travis ci testing adding .travis.yml file to enable unit testing run by travis Signed-off-by: Thiago da Silva --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..5cbb41a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - "2.6" + - "2.7" + +# command to install dependencies +install: "pip install tox nose" +# command to run tests +script: tox -e py27