
A major security fix[1] has been back-ported to icehouse branch in upstream Swift. This fix changes the method signature of one of the methods that we override, namely "update_metadata()". The method signature of the same method in gluster-swift has been adjusted accordingly. However, the entire fix itself has NOT been backported as the implementations are different and due to time constraints. [1]: https://review.openstack.org/#/c/126645/ Running unit tests in icehouse branch fails with: AttributeError: 'VersionInfo' object has no attribute 'semantic_version' Installing testtools package seems to be a good workaround for now. Also fixed pep8 issues and removed duplicate gswauth unit tests. Change-Id: I61d635ca5f47eb37f5275297c262f2bfe41de1fa Signed-off-by: Prashanth Pai <ppai@redhat.com>
68 lines
1.6 KiB
INI
68 lines
1.6 KiB
INI
[tox]
|
|
envlist = py26,py27,pep8,functest,ksfunctest
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install --allow-external netifaces --allow-insecure netifaces -U {opts} {packages}
|
|
whitelist_externals=bash
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
NOSE_WITH_OPENSTACK=1
|
|
NOSE_OPENSTACK_COLOR=1
|
|
NOSE_OPENSTACK_RED=0.05
|
|
NOSE_OPENSTACK_YELLOW=0.025
|
|
NOSE_OPENSTACK_SHOW_ELAPSED=1
|
|
NOSE_OPENSTACK_STDOUT=1
|
|
NOSE_WITH_COVERAGE=1
|
|
NOSE_COVER_BRANCHES=1
|
|
NOSE_COVER_PACKAGE=gluster
|
|
deps =
|
|
git+https://github.com/openstack/swift.git@icehouse-eol
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
# Just having testtools package installed fixes some dependency issue
|
|
# https://github.com/swiftstack/vagrant-swift-all-in-one/issues/19
|
|
# pip needs a good dependency resolver :/
|
|
testtools
|
|
flake8
|
|
changedir = {toxinidir}/test/unit
|
|
commands = nosetests -v {posargs}
|
|
|
|
[testenv:cover]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
NOSE_WITH_COVERAGE=1
|
|
NOSE_COVER_BRANCHES=1
|
|
NOSE_COVER_HTML=1
|
|
NOSE_COVER_HTML_DIR={toxinidir}/cover
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:functest]
|
|
changedir = {toxinidir}
|
|
commands = bash ./.functests
|
|
|
|
[testenv:ksfunctest]
|
|
changedir = {toxinidir}
|
|
commands = bash tools/keystone_functional_tests.sh
|
|
|
|
[testenv:pep8]
|
|
changedir = {toxinidir}
|
|
commands =
|
|
flake8 gluster test setup.py
|
|
|
|
[testenv:venv]
|
|
changedir = {toxinidir}
|
|
commands = {posargs}
|
|
|
|
[testenv:run]
|
|
changedir = {toxinidir}
|
|
commands = bash tools/tox_run.sh
|
|
|
|
[flake8]
|
|
ignore = H
|
|
builtins = _
|
|
exclude = .venv,.tox,dist,doc,test,*egg
|
|
show-source = True
|