2012-05-16 17:30:46 -04:00
|
|
|
[tox]
|
2015-12-15 16:37:34 +09:00
|
|
|
envlist = py27,py34,py35,pypy,pep8
|
2013-12-09 15:07:59 +00:00
|
|
|
minversion = 1.6
|
|
|
|
skipsdist = True
|
2012-05-16 17:30:46 -04:00
|
|
|
|
|
|
|
[testenv]
|
2013-12-09 15:07:59 +00:00
|
|
|
usedevelop = True
|
2013-12-11 16:17:16 -08:00
|
|
|
install_command = pip install -U {opts} {packages}
|
2016-02-24 14:45:16 -05:00
|
|
|
setenv =
|
|
|
|
LANG=en_US.utf8
|
|
|
|
VIRTUAL_ENV={envdir}
|
2012-12-27 15:26:50 -08:00
|
|
|
|
2013-05-29 22:13:02 +08:00
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2015-12-07 10:35:02 -08:00
|
|
|
.[keystone]
|
2016-03-02 08:59:59 -07:00
|
|
|
commands = sh -c '(find . -not \( -type d -name .?\* -prune \) \
|
2015-12-02 15:31:04 +09:00
|
|
|
\( -type d -name "__pycache__" -or -type f -name "*.py[co]" \) \
|
2016-03-02 08:59:59 -07:00
|
|
|
-print0; find . -name "*.dbm*" -print0) | xargs -0 rm -rf'
|
2015-12-02 15:31:04 +09:00
|
|
|
python setup.py testr --testr-args="{posargs}"
|
|
|
|
whitelist_externals = sh
|
2015-06-03 17:39:15 +01:00
|
|
|
passenv = SWIFT_* *_proxy
|
2012-05-16 17:30:46 -04:00
|
|
|
|
|
|
|
[testenv:pep8]
|
2013-04-28 19:16:38 -07:00
|
|
|
commands =
|
2014-02-26 09:52:38 +00:00
|
|
|
flake8 swiftclient tests
|
2012-05-16 17:30:46 -04:00
|
|
|
|
|
|
|
[testenv:venv]
|
|
|
|
commands = {posargs}
|
|
|
|
|
|
|
|
[testenv:cover]
|
2012-12-27 15:26:50 -08:00
|
|
|
commands = python setup.py testr --coverage
|
2012-05-16 17:30:46 -04:00
|
|
|
|
2015-02-17 14:24:33 -05:00
|
|
|
[testenv:func]
|
|
|
|
setenv = OS_TEST_PATH=tests.functional
|
|
|
|
whitelist_externals =
|
|
|
|
coverage
|
|
|
|
rm
|
|
|
|
commands =
|
|
|
|
python setup.py testr --coverage --testr-args="--concurrency=1"
|
|
|
|
coverage report -m
|
|
|
|
rm -f .coverage
|
|
|
|
|
2014-07-24 17:53:37 -04:00
|
|
|
[testenv:docs]
|
|
|
|
commands=
|
|
|
|
python setup.py build_sphinx
|
|
|
|
|
2013-04-28 19:16:38 -07:00
|
|
|
[flake8]
|
2015-07-17 16:16:07 +09:00
|
|
|
# it's not a bug that we aren't using all of hacking, ignore:
|
|
|
|
# H101: Use TODO(NAME)
|
|
|
|
# H301: one import per line
|
|
|
|
# H306: imports not in alphabetical order (time, os)
|
|
|
|
# H401: docstring should not start with a space
|
|
|
|
# H403: multi line docstrings should end on a new line
|
|
|
|
# H404: multi line docstring should start without a leading new line
|
|
|
|
# H405: multi line docstring summary not separated with an empty line
|
2015-08-19 11:43:08 -07:00
|
|
|
ignore = H101,H301,H306,H401,H403,H404,H405
|
2013-04-28 19:16:38 -07:00
|
|
|
show-source = True
|
2015-07-26 19:45:58 +02:00
|
|
|
exclude = .venv,.tox,dist,doc,*egg
|