From 04a9072171ca4bd2e022a1184a418f99a3105a5c Mon Sep 17 00:00:00 2001 From: Kiran_totad Date: Tue, 7 Mar 2017 11:55:22 +0530 Subject: [PATCH] Changed the python3.4 to python3.5 Change-Id: Ia4d2fbea713537163ae5232ff29f2857f59352c2 --- doc/source/testing.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/source/testing.rst b/doc/source/testing.rst index abf16b434..33f531c74 100644 --- a/doc/source/testing.rst +++ b/doc/source/testing.rst @@ -15,7 +15,7 @@ refer to the `tox documentation`_ for assistance. Unit Tests ---------- -Currently, we provide tox environments for Python 2.7 and 3.4. By default +Currently, we provide tox environments for Python 2.7 and 3.5. By default all available test environments within the tox configuration will execute when calling ``tox``. If you want to run them independently, you can do so with the following command: @@ -66,9 +66,9 @@ want to examine, then running the following command: For a list of pdb commands, please see: https://docs.python.org/2/library/pdb.html -**Python 3.4** +**Python 3.5** -In order to run the unit tests within the Python 3.4 unit testing environment +In order to run the unit tests within the Python 3.5 unit testing environment you need to make sure you have all necessary packages installed. - On Ubuntu/Debian:: @@ -83,13 +83,13 @@ you need to make sure you have all necessary packages installed. sudo dnf install python3-devel -You then specify to run the unit tests within the Python 3.4 environment when +You then specify to run the unit tests within the Python 3.5 environment when invoking tox .. code-block:: bash - # Executes tests on Python 3.4 - tox -e py34 + # Executes tests on Python 3.5 + tox -e py35 Functional Tests ----------------