
Replace .testr.conf by .stestr.conf for migration and update .gitignore, tox.ini and test-requirements.txt files accordingly Signed-off-by: HeroicHitesh <email.hiteshkumar@gmail.com> Change-Id: I0948bd22e257285c77fb61564684ab31080ecf54
30 lines
532 B
INI
30 lines
532 B
INI
[tox]
|
|
envlist = py3,pypy,pep8
|
|
minversion = 1.6
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = stestr run --slowest {posargs}
|
|
passenv = *_proxy *_PROXY
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
flake8
|
|
flake8 bin/swift-bench
|
|
flake8 bin/swift-bench-client
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
setenv = NOSE_WITH_COVERAGE=1
|
|
commands = nosetests {posargs}
|
|
|
|
[flake8]
|
|
ignore = H
|
|
show-source = True
|
|
exclude = .venv,.tox,dist,doc,test,*egg
|