From 3609471ada59d1daca9b06b5b224a19908359973 Mon Sep 17 00:00:00 2001 From: Luis Pabon Date: Mon, 9 Sep 2013 15:29:34 -0400 Subject: Tests should depend on PIP instead of Yum Unit tests now use pip to install the desired version of pip. Functional tests have been changed to use pip instead of yum to install the desired version of pip. Change-Id: I4ccc743385fb4258549c115e575c8834fd4d0561 Signed-off-by: Luis Pabon Reviewed-on: http://review.gluster.org/5853 Reviewed-by: Peter Portante --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 7269319..7d0d3be 100644 --- a/tox.ini +++ b/tox.ini @@ -10,7 +10,7 @@ setenv = VIRTUAL_ENV={envdir} NOSE_OPENSTACK_SHOW_ELAPSED=1 NOSE_OPENSTACK_STDOUT=1 deps = - https://launchpad.net/swift/havana/1.9.1/+download/swift-1.9.1.tar.gz + --download-cache={homedir}/.pipcache -r{toxinidir}/tools/test-requires changedir = {toxinidir}/test/unit commands = nosetests -v --exe --with-xunit --with-coverage --cover-package gluster --cover-erase --cover-xml --cover-html --cover-branches {posargs} @@ -21,7 +21,7 @@ downloadcache = ~/cache/pip [testenv:pep8] changedir = {toxinidir} commands = - flake8 gluster test extras + flake8 gluster test [testenv:cover] setenv = NOSE_WITH_COVERAGE=1 @@ -32,5 +32,5 @@ commands = {posargs} [flake8] ignore = H builtins = _ -exclude = .venv,.tox,dist,doc,test,*egg +exclude = swiftkerbauth.py,.venv,.tox,dist,doc,test,*egg show-source = True -- cgit