From be0e11fd5c8fc3e355237b9b63967a202d0ce306 Mon Sep 17 00:00:00 2001 From: Greg Back Date: Tue, 14 Feb 2017 14:58:07 -0600 Subject: [PATCH] Add Travis-CI config. --- .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..52cda7e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +sudo: false +language: python +python: + - "2.6" + - "2.7" + - "3.3" + - "3.4" + - "3.5" + - "3.6" +install: + - pip install -U pip setuptools + - pip install tox-travis +script: tox