diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst index 166b8fef1d..1301b819d7 100644 --- a/doc/source/dev/dev-quickstart.rst +++ b/doc/source/dev/dev-quickstart.rst @@ -15,7 +15,7 @@ an OpenStack project. Install prerequisites:: # Ubuntu/Debian: - sudo apt-get install python-dev libssl-dev python-pip libmysqlclient-dev libxml2-dev libxslt-dev libpq-dev git git-review libffi-dev gettext + sudo apt-get install python-dev libssl-dev python-pip libmysqlclient-dev libxml2-dev libxslt-dev libpq-dev git git-review libffi-dev gettext python-tox # Fedora/RHEL: sudo yum install python-devel openssl-devel python-pip mysql-devel libxml2-devel libxslt-devel postgresql-devel git git-review libffi-devel gettext @@ -56,8 +56,8 @@ All unit tests should be run using tox. To run Ironic's entire test suite:: To run a specific test, use a positional argument for the unit tests:: - # run a specific test for both Python 2.6 and 2.7 - tox -epy26,py27 -- test_conductor + # run a specific test for Python 2.7 + tox -epy27 -- test_conductor You may pass options to the test programs using positional arguments:: diff --git a/tox.ini b/tox.ini index 888b4582f4..23ae521085 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 1.6 skipsdist = True -envlist = py26,py27,pep8 +envlist = py27,pep8 [testenv] usedevelop = True