c019a1fa44
Change-Id: I1fba36e54850c18fdb2720377566ad43ee5b8661
21 lines
484 B
INI
21 lines
484 B
INI
[tox]
|
|
envlist = py26,py27,py32,py33,pypy,style,docs
|
|
|
|
[testenv]
|
|
# tox passes --pre to pip by default, but we don't want that
|
|
install_command = pip install {opts} {packages}
|
|
distribute = False
|
|
commands = nosetests -d --with-coverage --cover-inclusive --cover-package stevedore []
|
|
deps =
|
|
nose
|
|
mock
|
|
coverage
|
|
|
|
[testenv:style]
|
|
deps = flake8
|
|
commands = flake8 stevedore setup.py
|
|
|
|
[testenv:docs]
|
|
deps = -r{toxinidir}/docs/requirements.txt
|
|
commands = python setup.py build_sphinx
|