ba39ade716
This commit only removes code that is not required when swiftonfile will be used as Storage Policy in Swift. This commit does NOT: * include code changes to support SP * fix functional tests * update documentation related to SP This commit removes the following: * Gen builders script and its man page. * Authentication guide, user guide and other docs. * Swiftkerbauth code, unit tests, func tests and doc. * gswauth code, unit tests, func tests and doc. * Object expirer code modifications, unit tests and doc. * Conf files of account, container, proxy. * Account, container and proxy server code - server.py of each. * Account, container and proxy unit and functional tests. * DiskDir class and corresponding unit tests. * Our overridden ring.py (enforces account = volume = device) and tests. * Functional tests for authentication filters. * modules/swift and test/deploy directories. * Proxy base controllers unit tests. NOTE: We may have to reintroduce some of the above functional and unit tests after SP related code changes - during fixing functional tests. This commit modifies: * setup.py to reflect the above code removals. * constraints.py to remove references to ring.py * object server.py to remove object-expirer changes * tox.ini to remove ksfunctest and swfunctest Signed-off-by: Prashanth Pai <ppai@redhat.com>
60 lines
1.4 KiB
INI
60 lines
1.4 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 =
|
|
https://launchpad.net/swift/icehouse/1.13.1/+download/swift-1.13.1.tar.gz
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
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
|
|
bash tools/gswauth_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
|