From 1574b1655e47e4c37dfaf8de8cb0a8bfcb999894 Mon Sep 17 00:00:00 2001 From: Gwenael Lambrouin Date: Thu, 29 Jul 2021 18:22:29 +0200 Subject: docs: how to use tox on a developer's machine Change-Id: I0acbf6a89b1126336862a008bbe4331fa94ef0a5 Signed-off-by: Gwenael Lambrouin --- .gitignore | 1 + docs/testing/developer/devguide/index.rst | 16 ++-- .../developer/devguide/testing-nfvbench.rst | 89 ++++++++++++++++++++++ 3 files changed, 100 insertions(+), 6 deletions(-) create mode 100644 docs/testing/developer/devguide/testing-nfvbench.rst diff --git a/.gitignore b/.gitignore index c2bb485..93ef7df 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .DS_store *.pyc +*~ .idea .tox .cache diff --git a/docs/testing/developer/devguide/index.rst b/docs/testing/developer/devguide/index.rst index e219889..df8bfc7 100644 --- a/docs/testing/developer/devguide/index.rst +++ b/docs/testing/developer/devguide/index.rst @@ -1,8 +1,12 @@ -.. _nfvbench-releasenotes: - .. This work is licensed under a Creative Commons Attribution 4.0 International License. -.. http://creativecommons.org/licenses/by/4.0 +.. SPDX-License-Identifier: CC-BY-4.0 + + +************************ +NFVbench Developer Guide +************************ + +.. toctree:: + :maxdepth: 3 -*************** -Developer Guide -*************** + testing-nfvbench diff --git a/docs/testing/developer/devguide/testing-nfvbench.rst b/docs/testing/developer/devguide/testing-nfvbench.rst new file mode 100644 index 0000000..3e53d08 --- /dev/null +++ b/docs/testing/developer/devguide/testing-nfvbench.rst @@ -0,0 +1,89 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International License. +.. SPDX-License-Identifier: CC-BY-4.0 + +================ +Testing NFVbench +================ + +tox +=== + +NFVbench project uses `tox`_ to orchestrate the testing of the code base: + +* run unit tests +* check code style +* run linter +* check links in the docs + +In addition to testing, tox is also used to generate the documentation in HTML +format. + +What tox should do is specified in a ``tox.ini`` file located at the project root. + +tox is used in continuous integration (jenkins-ci today, gitlab-ci in the near +future): all the actions performed by tox must succeed before a patchset can be +merged. As a developer, it is also useful to run tox locally to detect and fix +the issues before pushing the code for review. + +.. _tox: https://tox.readthedocs.io/en/latest/ + + + +Using tox on a developer's machine +================================== + +Requirement: |python-version| +----------------------------- + +.. |python-version| replace:: Python 3.6 + +The current version of Python used by NFVbench is |python-version|. In +particular, this means that |python-version| is used: + +* by tox in CI +* in nfvbench Docker image +* in nfvbench traffic generator VM image + +|python-version| is needed to be able to run tox locally. If it is not +available through the package manager, it can be installed using `pyenv`_. In +that case, it will also be necessary to install the `pyenv-virtualenv`_ plugin. +Refer to the documentation of those projects for installation instructions. + +.. _pyenv: https://github.com/pyenv/pyenv +.. _pyenv-virtualenv: https://github.com/pyenv/pyenv-virtualenv + + +tox installation +---------------- + +Install tox with:: + + $ pip install tox tox-pip-version + + +Running tox +----------- + +In nfvbench root directory, simply run tox with:: + + $ tox + +If all goes well, tox shows a green summary such as:: + + py36: commands succeeded + pep8: commands succeeded + lint: commands succeeded + docs: commands succeeded + docs-linkcheck: commands succeeded + congratulations :) + +It is possible to run only a subset of tox *environments* with the ``-e`` +command line option. For instance, to check the code style only, do:: + + $ tox -e pep8 + +Each tox *environment* uses a dedicated python virtual environment. The +``-r`` command line option can be used to force the recreation of the virtual +environment(s). For instance:: + + $ tox -r -- cgit 1.2.3-korg