From e6ef20cd9689120b1fdb0d13727701fda22230fe Mon Sep 17 00:00:00 2001 From: Julian Lobbes Date: Thu, 10 Nov 2022 11:08:19 +0100 Subject: [PATCH] docs(readme): add instructions on how to run tests --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 890027a..a2032f4 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,12 @@ It provides a web-interface for administrators to create/read/update/delete orga Lumi is written in Python, using the [Flask](https://flask.palletsprojects.com/en/latest/) web framework. The motivation for Lumi is for it to provide a more user-friendly interface than [PhpLdapAdmin](https://phpldapadmin.sourceforge.net/wiki/index.php/Main_Page), however it is not a replacement. + +# Testing + +Make sure all dependencies listed in `requirements.txt` are installed. +To run all unit tests, simply run the following from within the repository root: + +```bash +pytest +```