Skip to content
Snippets Groups Projects
tox.ini 3.17 KiB
Newer Older
  • Learn to ignore specific revisions
  • [tox]
    minversion = 1.6
    
    skipsdist = True
    
    Cao Xuan Hoang's avatar
    Cao Xuan Hoang committed
    envlist = py35,py27,pep8,pypy
    
    
    [testenv]
    
    whitelist_externals = find
    
    Steven Dake's avatar
    Steven Dake committed
                          rm
    
    install_command = pip install {opts} {packages}
    deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
           -r{toxinidir}/requirements.txt
    
    Borne Mace's avatar
    Borne Mace committed
           -r{toxinidir}/test-requirements.txt
    
    passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
    
              OS_STDOUT_CAPTURE OS_STDERR_CAPTURE OS_LOG_CAPTURE OS_TEST_TIMEOUT
              PYTHON OS_TEST_PATH LISTOPT IDOPTION
    
    commands =
    
      find . -type f -name "*.py[c|o]" -delete
      find . -type d -name "__pycache__" -delete
    
      python setup.py test --slowest --testr-args='{posargs}'
    
    [testenv:debug]
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    commands = oslo_debug_helper -t tests {posargs}
    
    [testenv:cover]
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    setenv = VIRTUAL_ENV={envdir}
             NOSE_WITH_COVERAGE=1
             NOSE_COVER_BRANCHES=1
             NOSE_COVER_HTML=1
             NOSE_COVER_HTML_DIR={toxinidir}/cover
    commands = python setup.py testr --coverage --testr-args='{posargs}'
    
    
    [testenv:pep8]
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    # sphinx needs to be installed to make doc8 work properly
    
    deps =
        {[testenv]deps}
    
        -r{toxinidir}/doc/requirements.txt
    
        yamllint
    
    commands =
      {toxinidir}/tools/run-bashate.sh
      flake8 {posargs}
    
      python {toxinidir}/tools/validate-all-file.py
    
      bandit -r ansible kolla_ansible tests tools
    
      yamllint -s .
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    commands = bandit -r ansible kolla_ansible tests tools
    
    [testenv:venv]
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    deps =
      -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
      -r{toxinidir}/test-requirements.txt
      -r{toxinidir}/doc/requirements.txt
    
    commands = {posargs}
    
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    deps =
       -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
       -r{toxinidir}/requirements.txt
       -r{toxinidir}/doc/requirements.txt
    
      rm -rf doc/build
    
      sphinx-build -W -b html doc/source doc/build/html
    
    [testenv:deploy-guide]
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    deps =
       -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
       -r{toxinidir}/requirements.txt
       -r{toxinidir}/doc/requirements.txt
    
    commands =
      rm -rf deploy-guide/build
      sphinx-build -a -E -W -d deploy-guide/build/doctrees -b html deploy-guide/source deploy-guide/build/html
    
    [testenv:setupenv]
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    commands =
      {toxinidir}/tools/setup_gate.sh
      {toxinidir}/tools/dump_info.sh
    
    Steven Dake's avatar
    Steven Dake committed
    [testenv:releasenotes]
    
    qingszhao's avatar
    qingszhao committed
    basepython = python3
    
    deps =
       -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
       -r{toxinidir}/requirements.txt
       -r{toxinidir}/doc/requirements.txt
    
    Steven Dake's avatar
    Steven Dake committed
    commands =
      rm -rf releasenotes/build
      sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
    
    
    Borne Mace's avatar
    Borne Mace committed
    [flake8]
    show-source = True
    
    SamYaple's avatar
    SamYaple committed
    exclude=.eggs,.git,.tox,doc
    
    
    [testenv:lower-constraints]
    basepython = python3
    deps =
      -c{toxinidir}/lower-constraints.txt
      -r{toxinidir}/test-requirements.txt
      -r{toxinidir}/requirements.txt