From 6105b909e06e9f2fc1ae0f3e8cadc39eb432cd96 Mon Sep 17 00:00:00 2001 From: Gijs Molenaar Date: Sun, 27 Jul 2014 16:00:05 +0200 Subject: [PATCH] add tox testing --- test/requirements.txt | 1 + tox.ini | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 tox.ini diff --git a/test/requirements.txt b/test/requirements.txt index 6317802e..ac11c7bb 100644 --- a/test/requirements.txt +++ b/test/requirements.txt @@ -1,4 +1,5 @@ nose coverage +tox diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..5538decb --- /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 = nosetests +deps = nose