From e05ae2858026e6ebca4d256287cc620ac0760fbe Mon Sep 17 00:00:00 2001 From: Nikos Koukis Date: Wed, 26 May 2021 18:22:03 +0300 Subject: [PATCH] Explain how to run unittests locally --- README.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.rst b/README.rst index 15a22d14..94aa3d8b 100644 --- a/README.rst +++ b/README.rst @@ -217,3 +217,18 @@ Alternatively the ``-e/--editable`` flag of ``pip`` can be used:: # from the top level of this repo pip3 install --user -e . + + +Running tests +-------------- + +To run the unittests locally you shuld also have the following PyPI packages +installed: + +* coverage +* flake8 +* flake8-import-order +* flake8-docstrings +* pytest + +To run the tests, run ``pytest`` from the root of the repository.