Skip to content
Snippets Groups Projects
  • Radosław Piliszek's avatar
    234272eb
    Cleanup py27 support · 234272eb
    Radosław Piliszek authored
    Removes and/or replaces all mentions of py27.
    
    Cleans up obsolete requirements and their lower-constraints.
    
    Separates test-requirements.
    
    Makes lower-constraints pass outside of CI (MarkupSafe).
    
    Adds FIXMEs about some hacky Mocks that may misbehave.
    
    Change-Id: Ifc090bf3c1db17d8542ee591c91e8225a597bfe2
    234272eb
    History
    Cleanup py27 support
    Radosław Piliszek authored
    Removes and/or replaces all mentions of py27.
    
    Cleans up obsolete requirements and their lower-constraints.
    
    Separates test-requirements.
    
    Makes lower-constraints pass outside of CI (MarkupSafe).
    
    Adds FIXMEs about some hacky Mocks that may misbehave.
    
    Change-Id: Ifc090bf3c1db17d8542ee591c91e8225a597bfe2
tox.ini 3.39 KiB
[tox]
minversion = 3.1
skipsdist = True
envlist = py37,pep8,pypy
ignore_basepython_conflict = True

[testenv]
basepython = python3
usedevelop=True
whitelist_externals = find
                      rm
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
       -r{toxinidir}/requirements.txt
       -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 -o -type l -name "*.py[c|o]" -delete
  find . -type d -name "__pycache__" -delete
  stestr run --slowest {posargs}

[testenv:debug]
commands = oslo_debug_helper -t tests {posargs}

[testenv:cover]
setenv = VIRTUAL_ENV={envdir}
         NOSE_WITH_COVERAGE=1
         NOSE_COVER_BRANCHES=1
         NOSE_COVER_HTML=1
         NOSE_COVER_HTML_DIR={toxinidir}/cover
         PYTHON=coverage run --source kolla_ansible,ansible/action_plugins,ansible/library,ansible/roles/keystone/files/ --parallel-mode
commands =
    stestr run {posargs}
    coverage combine
    coverage html -d cover
    coverage xml -o cover/coverage.xml

[testenv:pep8]
# 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}
  doc8 doc/source
  doc8 -e '.yaml' releasenotes/notes/
  python {toxinidir}/tools/validate-all-file.py
  bandit --skip B303 -r ansible kolla_ansible tests tools
  yamllint -s .

[testenv:bandit]
# B303: Use of insecure MD2, MD4, MD5, or SHA1 hash function.
commands = bandit --skip B303 -r ansible kolla_ansible tests tools

[testenv:venv]
deps =
  -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
  -r{toxinidir}/test-requirements.txt
  -r{toxinidir}/doc/requirements.txt
commands = {posargs}

[testenv:docs]
deps =
   -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
   -r{toxinidir}/doc/requirements.txt
commands =
  rm -rf doc/build
  sphinx-build -W --keep-going -b html doc/source doc/build/html

[testenv:deploy-guide]
deps =
   -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
   -r{toxinidir}/doc/requirements.txt

commands =
  rm -rf deploy-guide/build
  sphinx-build -a -E -W -d deploy-guide/build/doctrees --keep-going -b html deploy-guide/source deploy-guide/build/html

[testenv:pdf-docs]
whitelist_externals = make
deps = {[testenv:docs]deps}
commands =
  sphinx-build -W --keep-going -b latex doc/source doc/build/pdf
  make -C doc/build/pdf

[testenv:releasenotes]
deps =
   -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
   -r{toxinidir}/requirements.txt
   -r{toxinidir}/doc/requirements.txt
commands =
  rm -rf releasenotes/build
  sphinx-build -a -E -W -d releasenotes/build/doctrees --keep-going -b html releasenotes/source releasenotes/build/html

[flake8]
show-source = True
# NOTE: Default ignore list is *not* empty!
# TODO: Enable either W503 or W504:
# W503 line break before binary operator
# W504 line break after binary operator
ignore = W503,W504
exclude=.eggs,.git,.tox,doc

[testenv:lower-constraints]
deps =
  -c{toxinidir}/lower-constraints.txt
  -r{toxinidir}/test-requirements.txt
  -r{toxinidir}/requirements.txt