fuel-web/nailgun/tox.ini
Evgeniy L 162b26a988 Move volume manager specific urls into extension
* added a field for extension where urls can be
  defined
* move urls into volume manager extension
* removed TODO from test_api_doc_generation test
* removed TestRemovedIn51Handler test because:
** it does not test anything, correct work
   of removal of related handler is tested in
   in other tests in the same file
** the test relies on patching of global variable
   which causes a lot of problems, now you cannot
   change global variable so it gets propagated
   into web.py
* added exception H304 in tox configuration, it's
  required because extensions should be written in
  a way that they can import their modules without
  specifing full path to extension, which currently
  includes nailgun module as a root module. It will
  be easier to extract it later from nailgun into
  separate module/repo

Implements blueprint: volume-manager-refactoring

Change-Id: I6fd5a63e6946ef87604f1f91a99351c24de45689
2015-06-29 12:08:48 +00:00

46 lines
957 B
INI

[tox]
minversion = 1.6
skipsdist = True
envlist = py26,py27,pep8
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/test-requirements.txt
commands =
py.test {posargs:nailgun/test}
[tox:jenkins]
downloadcache = ~/cache/pip
[testenv:pep8]
deps = hacking==0.7
usedevelop = False
commands =
flake8 {posargs:nailgun}
[testenv:cover]
setenv = NOSE_WITH_COVERAGE=1
[testenv:venv]
deps = -r{toxinidir}/requirements.txt
commands = {posargs:}
[testenv:devenv]
envdir = devenv
usedevelop = True
[flake8]
# NOTE(eli): H304 is "No relative imports" error, relative
# imports are required for extensions which can be moved
# from nailgun directory to different place
ignore = H234,H302,H802,H304
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