diff --git a/doc/source/cicd.rst b/doc/source/cicd.rst index b69017463e4b0173f4fada498ed09150dcba7d95..c0dfd04b69e7edeea9da008ce0ac9de3febfa1a0 100644 --- a/doc/source/cicd.rst +++ b/doc/source/cicd.rst @@ -26,13 +26,13 @@ Still Failing ``build log`` explained ----------------------- -The build log includes several sections on +The build log includes 6 sections. -1. a check on versions of requirements +Check on versions of requirements The status will be non-zero if any of your requirements is behind other developers. -2. a check on installation of requirements +Check on installation of requirements The status will be non-zero if ``pip install -r requirements.txt`` exit with non-zero status. -3. a check on installation of package +Check on installation of package The status will be non-zero if the following code are unsuccessfully executed .. code-block:: bash @@ -42,21 +42,21 @@ The build log includes several sections on python setup.py sdist # build source code pip install dist/*.tar.gz --force-reinstall --no-deps # install package without dependencies -4. a check on import of interfaces (top_level_interface) +Check on import of interfaces (``top_level_interface``) The status will be non-zero if the following code are unsuccessfully executed .. code-block:: python from .top_level_interface import * -5. unit tests and coverage +Run unit tests and coverage The status will be non-zero if the following code are unsuccessfully executed .. code-block:: bash coverage run -m pytest --import-mode=importlib -6. Numpydoc validation of interfaces +``Numpydoc`` validation of interfaces .. code-block:: bash