From 3448e0b7d711d226d908b00ceba0b15d48a90b4c Mon Sep 17 00:00:00 2001 From: Manjeet Singh Bhatia Date: Wed, 14 Feb 2018 10:41:11 -0800 Subject: [PATCH] Update tox debug env Having no path in debug environment assumes the test path to be neutron_tempest_plugin/tests which doesn't exists, so tox -e debug debug fails complaining that neutron_tempest_plugin/tests isn't importable. This patch fixes the test path for debug environment. Change-Id: Iac685d4d4fcee357c40141acc79b2aac28bd535b --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index dbd0526b..c16664d8 100644 --- a/tox.ini +++ b/tox.ini @@ -33,7 +33,7 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html [testenv:debug] -commands = oslo_debug_helper {posargs} +commands = oslo_debug_helper -t neutron_tempest_plugin/ {posargs} [flake8] # E125 continuation line does not distinguish itself from next logical line