From a45a3642b5ecb1ce1593b5902957328034b52c01 Mon Sep 17 00:00:00 2001 From: ArtofBugs Date: Thu, 4 Apr 2024 17:09:28 -0700 Subject: [PATCH] Tox: Fix install commands for unit-tips and functional-tips Change-Id: I352ea2b18a8bdb57cd3027c2024834db091a5643 --- tox.ini | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tox.ini b/tox.ini index 0cfed1712c..ece6be2fa2 100644 --- a/tox.ini +++ b/tox.ini @@ -50,10 +50,10 @@ commands = [testenv:unit-tips] commands = - python -m pip install -q -U -e "git+file://{toxinidir}/../cliff#egg=cliff" - python -m pip install -q -U -e "git+file://{toxinidir}/../keystoneauth#egg=keystoneauth" - python -m pip install -q -U -e "git+file://{toxinidir}/../osc-lib#egg=osc_lib" - pythom -m pip install -q -e "git+file://{toxinidir}/../openstacksdk#egg=openstacksdk" + python -m pip install -q -U -e {toxinidir}/../cliff#egg=cliff + python -m pip install -q -U -e {toxinidir}/../keystoneauth#egg=keystoneauth + python -m pip install -q -U -e {toxinidir}/../osc-lib#egg=osc_lib + python -m pip install -q -U -e {toxinidir}/../openstacksdk#egg=openstacksdk python -m pip freeze stestr run {posargs} @@ -71,10 +71,10 @@ setenv = passenv = OS_* commands = - python -m pip install -q -U -e "git+file://{toxinidir}/../cliff#egg=cliff" - python -m pip install -q -U -e "git+file://{toxinidir}/../keystoneauth#egg=keystoneauth1" - python -m pip install -q -U -e "git+file://{toxinidir}/../osc-lib#egg=osc_lib" - python -m pip install -q -U -e "git+file://{toxinidir}/../openstacksdk#egg=openstacksdk" + python -m pip install -q -U -e {toxinidir}/../cliff#egg=cliff + python -m pip install -q -U -e {toxinidir}/../keystoneauth#egg=keystoneauth1 + python -m pip install -q -U -e {toxinidir}/../osc-lib#egg=osc_lib + python -m pip install -q -U -e {toxinidir}/../openstacksdk#egg=openstacksdk python -m pip freeze stestr run {posargs}