https://github.com/ging/horizon
Revision e9f4b2aa64d8b4dfc61a2ad4db9ef3beb11c398c authored by Jenkins on 26 September 2013, 19:16:11 UTC, committed by Gerrit Code Review on 26 September 2013, 19:16:11 UTC
2 parent s 16c7ab1 + 6b9c5dd
Raw File
Tip revision: e9f4b2aa64d8b4dfc61a2ad4db9ef3beb11c398c authored by Jenkins on 26 September 2013, 19:16:11 UTC
Merge "Update English PO files (source lang of translations)"
Tip revision: e9f4b2a
tox.ini
[tox]
envlist = py26,py27,py27dj14,pep8,py33

[testenv]
setenv = VIRTUAL_ENV={envdir}
         NOSE_WITH_OPENSTACK=1
         NOSE_OPENSTACK_COLOR=1
         NOSE_OPENSTACK_RED=0.05
         NOSE_OPENSTACK_YELLOW=0.025
         NOSE_OPENSTACK_SHOW_ELAPSED=1
deps = -r{toxinidir}/requirements.txt
       -r{toxinidir}/test-requirements.txt
commands = /bin/bash run_tests.sh -N

[testenv:pep8]
commands = /bin/bash run_tests.sh -N --pep8

[testenv:venv]
commands = {posargs}

[testenv:cover]
commands = /bin/bash run_tests.sh -N --coverage

[testenv:py27dj14]
basepython = python2.7
commands = pip install django==1.4
           /bin/bash run_tests.sh -N

[tox:jenkins]
downloadcache = ~/cache/pip

[flake8]
builtins = _
exclude =  .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,panel_template,dash_template,local_settings.py
# E127 continuation line over-indented for visual indent
# E128 continuation line under-indented for visual indent
# H102 Apache 2.0 license header not found
# H4xx docstrings
# H701 empty localization string
# H702 Formatting operation should be outside of localization method call
ignore = E127,E128,H102,H4,H701,H702
back to top