Add documentation for testing
This commit is contained in:
parent
4d5875a3aa
commit
678bfa9736
2 changed files with 15 additions and 1 deletions
|
@ -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
13
backend/docs/testing.md
Normal 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
|
||||
```
|
Loading…
Reference in a new issue