Files
deb-python-fuelclient/tox.ini
Roman Prykhodchenko 356f1df285 Allow python-fuelclient to be packaged properly
- Use pbr
 - Clean up extra dependencies
 - Trigger Nailgun's scripts in their own virtual
   environment

Blueprint: re-thinking-fuel-client
Change-Id: Icbf2df4c056cc9adf6a01e67d4e06a979cefa274
2015-01-24 22:57:34 +01:00

43 lines
812 B
INI

[tox]
minversion = 1.6
skipsdist = True
envlist = py26,py27,pep8
[testenv]
usedevelop = True
install_command = pip install --allow-external -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
nosetests {posargs:fuelclient}
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv:pep8]
deps = hacking==0.7
usedevelop = False
commands =
flake8 {posargs:fuelclient}
[testenv:cover]
setenv = NOSE_WITH_COVERAGE=1
[testenv:venv]
commands = {posargs:}
[testenv:devenv]
envdir = devenv
usedevelop = True
[flake8]
ignore = H234,H302,H802
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools,__init__.py,docs
show-pep8 = True
show-source = True
count = True
[hacking]
import_exceptions = testtools.matchers