deb-oslotest/tox.ini
Julien Danjou 9e0c8ad2c2 Remove six.moves call
This patches remove the six.move call as it's does not move anything
since it relies always on mox3.

Change-Id: Ic59c73abb9b09cb594bf7df4173d7f99f81d526c
2015-01-15 11:24:07 +01:00

33 lines
636 B
INI

[tox]
distribute = False
envlist = py33,py34,py26,py27,pep8
[testenv]
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]
commands = flake8
[testenv:cover]
setenv = VIRTUAL_ENV={envdir}
commands =
python setup.py testr --coverage
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
show-source = True
exclude = .tox,dist,doc,*.egg,build
[hacking]
import_exceptions =
six.moves.mock