Remove ipdb installation in tox debug section

The lastest ipdb depends on ipython 6.0, but ipython 6.0
only can be installed in python 3.3 and above, see
http://paste.openstack.org/show/607632/ . If we try to
run "tox -e debug" in python2.7, the install error is raised
and block the function. Remove the ipdb installation, it's
not necessary, we can use pdb to replace.

Change-Id: Ib47bb5925b7a5b1d3a319b58fa219c1b57dccb93
This commit is contained in:
Rui Chen 2017-04-24 15:06:26 +08:00
parent db6081fb80
commit af435ee0a8
1 changed files with 0 additions and 1 deletions

View File

@ -75,7 +75,6 @@ commands =
[testenv:debug]
passenv = OS_*
commands =
pip install -q -U ipdb
oslo_debug_helper -t openstackclient/tests {posargs}
[testenv:docs]