From b2cddba6d6990978c322cec49e44dd07b0372dce Mon Sep 17 00:00:00 2001 From: Kyle Mahan Date: Fri, 18 Mar 2016 18:36:41 -0700 Subject: [PATCH] add travis config --- .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..724e602 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.3" + - "3.4" +# command to run tests +script: "python setup.py test" +sudo: false