From e7ff2f70de4b09193b3e4691ba626168bf64bb52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20L=C3=B3pez=20Mareque?= Date: Wed, 30 Oct 2024 11:17:31 +0100 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9669183..a0ff1bb 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,13 @@ - The project has a `Dockerfile` ready to use to deploy the app in production. ## Requirements + - You only need to have [Poetry](https://python-poetry.org) installed. ## Folder structure - There is a `tests` folder with the tests files. - - The `unit` folder contains the unit tests, also know as [F.I.R.S.T](https://dzone.com/articles/writing-your-first-unit-tests#:~:text=First%20class%20developers%20write%20their,self%2Dvalidating%2C%20and%20timely.&text=Unit%20tests%20are%20required%20to%20test%20singular%20sections%20of%20code.). + - The `unit` folder contains the unit tests, also known as [F.I.R.S.T](https://dzone.com/articles/writing-your-first-unit-tests#:~:text=First%20class%20developers%20write%20their,self%2Dvalidating%2C%20and%20timely.&text=Unit%20tests%20are%20required%20to%20test%20singular%20sections%20of%20code.). - The `integration` folder contains the tests that will validate the connection between our app and the external services. - The `acceptance` folder contains the tests that validate the app behavior from the outside. - The production code goes inside the `src` folder.