From 678bfa9736c1c79f02d39a3ad3e3a7a8098bc270 Mon Sep 17 00:00:00 2001 From: linuskmr Date: Thu, 23 Dec 2021 18:00:06 +0100 Subject: [PATCH] Add documentation for testing --- backend/README.md | 3 ++- backend/docs/testing.md | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 backend/docs/testing.md diff --git a/backend/README.md b/backend/README.md index ed9628e..61f8c04 100644 --- a/backend/README.md +++ b/backend/README.md @@ -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) \ No newline at end of file +- [Guidelines](docs/guidelines.md) +- [Testing](docs/testing.md) \ No newline at end of file diff --git a/backend/docs/testing.md b/backend/docs/testing.md new file mode 100644 index 0000000..922d84f --- /dev/null +++ b/backend/docs/testing.md @@ -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 +``` \ No newline at end of file