ceph/tox.ini
Alfredo Deza 22df40e275 include E9 errors for flake8 runs in tox.ini
Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
2015-04-28 12:16:46 -04:00

41 lines
909 B
INI

[tox]
envlist = docs, py27, py27-integration, flake8
[testenv:py27]
sitepackages=True
deps=
-r{toxinidir}/requirements.txt
mock
fudge
nose
pytest-cov==1.6
coverage==3.7.1
commands=py.test --cov=teuthology --cov-report=term -v {posargs:teuthology scripts}
[testenv:py27-integration]
sitepackages=True
deps=
-r{toxinidir}/requirements.txt
mock
fudge
nose
pytest-cov==1.6
coverage==3.7.1
commands=py.test --cov=teuthology --cov-report=term -v {posargs:teuthology/test/integration teuthology/orchestra/test/integration}
basepython=python2.7
[testenv:flake8]
deps=
flake8
commands=flake8 --select=F,E9 {posargs:teuthology scripts}
[testenv:docs]
basepython=python
changedir=docs
deps=sphinx
commands=
sphinx-apidoc -f -o . ../teuthology ../teuthology/test ../teuthology/orchestra/test ../teuthology/task/test
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html