From 4f8a6872e6200467e83bc182d0a19707e9c3eecb Mon Sep 17 00:00:00 2001 From: Trinh Nguyen Date: Thu, 6 Sep 2018 16:57:40 +0900 Subject: [PATCH] Add oslo_debug_helper to test Change-Id: I59bde3899fb4fa2a9526239d815b851b2e728b89 Story: #2003681 Task: #26205 --- tox.ini | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tox.ini b/tox.ini index 9b02d218..6e489826 100644 --- a/tox.ini +++ b/tox.ini @@ -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:'