Add oslo_debug_helper to test

Change-Id: I59bde3899fb4fa2a9526239d815b851b2e728b89
Story: #2003681
Task: #26205
This commit is contained in:
Trinh Nguyen 2018-09-06 16:57:40 +09:00
parent fba07516c5
commit 4f8a6872e6
1 changed files with 15 additions and 0 deletions

15
tox.ini
View File

@ -85,6 +85,21 @@ basepython = python3
deps = -r{toxinidir}/doc/requirements.txt
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:debug-py27]
basepython = python2.7
commands = oslo_debug_helper {posargs}
[testenv:debug-py35]
basepython = python3.5
commands = oslo_debug_helper {posargs}
[testenv:debug-py36]
basepython = python3.6
commands = oslo_debug_helper {posargs}
[flake8]
# TODO(dmllr): Analyze or fix the warnings blacklisted below
# E711 comparison to None should be 'if cond is not None:'