summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavanum Srinivas <davanum@gmail.com>2015-11-14 23:06:56 -0500
committerDavanum Srinivas (dims) <davanum@gmail.com>2015-11-16 00:54:40 +0000
commitcf73555607db1a151b470d71a705fc0f99bdb745 (patch)
treeacc083e558841dae5cdb9ededbda1cda974493b7
parent345832a52c28ec12743256b8c7827ff6817d31c9 (diff)
downloadoslotest-cf73555607db1a151b470d71a705fc0f99bdb745.tar.gz
Remove python 2.6 and cleanup tox.ini
* Remove support for python 2.6 * Remove install_command : We can just use the default, we don't need to override * Remove setenv : We can just use the default as we don't need any extra environment variables * Remove requirements.txt from deps, as this is already added automatically Change-Id: I4f650eaa07624b889a52570e628a21e905f2bd46
-rw-r--r--tox.ini7
1 files changed, 2 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index 63c8bed..de31e49 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,12 +1,9 @@
[tox]
distribute = False
-envlist = py34,py26,py27,pep8
+envlist = py34,py27,pep8
[testenv]
-install_command = pip install -U {opts} {packages}
-setenv = VIRTUAL_ENV={envdir}
-deps = -r{toxinidir}/requirements.txt
- -r{toxinidir}/test-requirements.txt
+deps = -r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]