summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Chen <chenrui.momo@gmail.com>2017-04-24 15:06:26 +0800
committerRui Chen <chenrui.momo@gmail.com>2017-04-24 15:06:26 +0800
commitaf435ee0a80d9392da004d80efea0c4e090e8208 (patch)
treee25a0f9bd574b68ded3906112d4415477adbb5e4
parentdb6081fb802559cdb6623bbc5dbff597cd287b07 (diff)
downloadpython-openstackclient-af435ee0a80d9392da004d80efea0c4e090e8208.tar.gz
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
-rw-r--r--tox.ini1
1 files changed, 0 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index d3cafae5..ac5c6593 100644
--- a/tox.ini
+++ b/tox.ini
@@ -75,7 +75,6 @@ commands =
[testenv:debug]
passenv = OS_*
commands =
- pip install -q -U ipdb
oslo_debug_helper -t openstackclient/tests {posargs}
[testenv:docs]