7bde6225ee
Change-Id: I3c539c0550ee7063fb7619876e3d5a69c722caf3
70 lines
1.9 KiB
INI
70 lines
1.9 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py27,pep8,eslint,karma
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = {toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
|
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
|
|
CLIENT_NAME=octavia-dashboard
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = /usr/bin/npm
|
|
/bin/bash
|
|
commands = python manage.py test
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:py27integration]
|
|
basepython = python2.7
|
|
setenv =
|
|
{[testenv]setenv}
|
|
INTEGRATION_TESTS=1
|
|
SELENIUM_HEADLESS=1
|
|
HORIZON_INTEGRATION_TESTS_CONFIG_FILE=octavia_dashboard/tests/integration_tests/horizon.conf
|
|
DJANGO_SETTINGS_MODULE=octavia_dashboard.tests.settings
|
|
commands = nosetests octavia_dashboard/tests/integration_tests/tests {posargs}
|
|
|
|
[testenv:cover]
|
|
commands = python setup.py test --coverage --testr-args='{posargs}'
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv:releasenotes]
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:debug]
|
|
commands = oslo_debug_helper {posargs}
|
|
|
|
[testenv:eslint]
|
|
# npm must be installed on the system, for example
|
|
# sudo apt-get install npm
|
|
commands = npm install
|
|
npm run lint
|
|
|
|
[testenv:karma]
|
|
# npm must be installed on the system, for example
|
|
# sudo apt-get install npm
|
|
commands = npm install
|
|
npm test
|
|
|
|
[flake8]
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
|
|
show-source = True
|
|
ignore = E123,E125
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,.tmp,dist,doc,*lib/python*,*egg,build,node_modules
|