Add documentation for testing

This commit is contained in:
linuskmr 2021-12-23 18:00:06 +01:00
parent 4d5875a3aa
commit 678bfa9736
2 changed files with 15 additions and 1 deletions

View file

@ -7,4 +7,5 @@ The documentation is split in several files for better structure.
Table of Contents:
- [Installation](docs/installation.md)
- [Guidelines](docs/guidelines.md)
- [Guidelines](docs/guidelines.md)
- [Testing](docs/testing.md)

13
backend/docs/testing.md Normal file
View file

@ -0,0 +1,13 @@
# Testing
To execute the tests, you need to install pytest.
```bash
$ pip3 install pytest
```
Then, you can run the tests with:
```bash
$ pytest
```