From 07f4152c583f796d84a9999db46bcb5794648eb3 Mon Sep 17 00:00:00 2001 From: Simon Westphahl Date: Wed, 6 May 2015 17:44:16 +0200 Subject: [PATCH] Testing: Create Tox and Travis CI config This will just build the package and install it for Python 2.7 and 3.4 --- .travis.yml | 5 +++++ tox.ini | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .travis.yml create mode 100644 tox.ini diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..df3bb3e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: python +install: + - pip install tox +script: + - tox diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..51ae1a2 --- /dev/null +++ b/tox.ini @@ -0,0 +1,11 @@ +# Tox (http://tox.testrun.org/) is a tool for running tests +# in multiple virtualenvs. This configuration file will run the +# test suite on all supported python versions. To use it, "pip install tox" +# and then run "tox" from this directory. + +[tox] +envlist = py27, py34 + +[testenv] +commands = +deps =