db047a71e9
Also, update our minversion to match swift. Change-Id: I3d0cd6ef11f010f79367598dbb242121c7348d4d
29 lines
509 B
INI
29 lines
509 B
INI
[tox]
|
|
envlist = py3,pypy,pep8
|
|
minversion = 3.18.0
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = stestr run --slowest {posargs}
|
|
|
|
[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
|