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
This commit is contained in:
John L. Villalovos 2016-08-05 09:09:21 -07:00
parent fc92d5ce43
commit 6cbea412cc

View File

@ -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::