docs(readme): add instructions on how to run tests

This commit is contained in:
Julian Lobbes 2022-11-10 11:08:19 +01:00
parent 1cbf2ce99b
commit e6ef20cd96

View File

@ -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
```