summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJordanP <jordan.pittier-ext@cloudwatt.com>2013-12-09 13:53:45 +0100
committerJordanP <jordan.pittier-ext@cloudwatt.com>2013-12-09 13:53:45 +0100
commit0bccbf33790ac3c5ecfba61706be16f20776908e (patch)
treeb67402b2e0d1f99d3266634fe1e0aebe9adab74a /tox.ini
parent98916388013d081503830bfbad039209d99c7980 (diff)
downloadheat-0bccbf33790ac3c5ecfba61706be16f20776908e.tar.gz
Update tox.ini to use new features
tox 1.6 allows us to skip the sdist step, which is slow. This does that. It also allows us to override the install line. In this case, it's important as it allows us to stop getting pre-release software we weren't asking for. Original patch by Monty Taylor, talked about here: http://lists.openstack.org/pipermail/openstack-dev/2013-September/015495.html Change-Id: I9fe8a6cff149b3b79d434dc955c77a358c43031d
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 4 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 23b515658..20994643b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,8 +1,12 @@
[tox]
envlist = py26,py27,pep8,contrib
+minversion = 1.6
+skipsdist = True
[testenv]
setenv = VIRTUAL_ENV={envdir}
+usedevelop = True
+install_command = pip install {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =