From 4d7f2afb1d756a1cf608acc09356d6ac906b6cf8 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 30 Dec 2011 14:03:15 -0800 Subject: [PATCH] Add tox.ini file. The tox.ini drives the current test suite in multiple virtual envs, so this is a first step in trying to get multi-version testing. Change-Id: I9c28ee11aa7bbe1b221a72e0ee8cc51d788f73c9 --- tox.ini | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000000..69689cbed0 --- /dev/null +++ b/tox.ini @@ -0,0 +1,10 @@ +[tox] +envlist = py26,py27 + +[testenv] +deps = -r{toxinidir}/tools/pip-requires +commands = /bin/bash run_tests.sh -N + +[testenv:pep8] +commands = pep8 --repeat glance +