From 6cbea412cc6f2f2927880c1ef4be1cb3cd50a967 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Fri, 5 Aug 2016 09:09:21 -0700 Subject: [PATCH] Docs: Run py34 tox test before py27 Since running the py27 tox test before the py34 tox test can cause errors about 'db type could not be determined'. Change the docs to show the py34 test first, so hopefully people will run that test first. Change-Id: I59409edc5cab7f58112ebe28e280f0eeda3becd0 --- doc/source/dev/dev-quickstart.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst index d8287c691c..6df5953efb 100644 --- a/doc/source/dev/dev-quickstart.rst +++ b/doc/source/dev/dev-quickstart.rst @@ -134,16 +134,16 @@ All unit tests should be run using tox. To run Ironic's entire test suite:: # run all tests (unit under both py27 and py34, and pep8) tox -To run the unit tests under py27 and also run the pep8 tests:: - - # run all tests (unit under py27 and pep8) - tox -epy27 -epep8 - To run the unit tests under py34 and also run the pep8 tests:: # run all tests (unit under py34 and pep8) tox -epy34 -epep8 +To run the unit tests under py27 and also run the pep8 tests:: + + # run all tests (unit under py27 and pep8) + tox -epy27 -epep8 + .. note:: If tests are run under py27 and then run under py34 or py35 the following error may occur::