diff --git a/templates/python/testing/pytest/README.md b/templates/python/testing/pytest/README.md
index 4e9065ba07f3aa2c78bd83ad6fd8022edd4acc60..8d6004bc51a4c88cfc8c0511628fd109259aee44 100644
--- a/templates/python/testing/pytest/README.md
+++ b/templates/python/testing/pytest/README.md
@@ -14,12 +14,12 @@ automation, modular fixtures, parameterized testing, and many other features.
 
 ## Variables
 
-| Name             | Description                                                                                                                                                  | Default                    |
-|------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------|
-| `PROJECT_PATH`   | The path to the project root directory.                                                                                                                      | `"."`                      |
-| `IMAGE_TAG`      | The default tag for the docker image. See [Python Docker Official Image](https://hub.docker.com/_/python) for supported tags and respective Dockerfile links | `"latest"`                 |
-| `PYTHON_SETUP`   | Bash commands to setup your python environment. Default rely on `pyproject.toml` to install project and test dependencies.                                   | `"pip install .[TESTS]"`   |
-| `PYTEST_RUN_CMD` | Bash command to run pytest.                                                                                                                                  | `"pytest ${PROJECT_PATH}"` |
+| Name             | Description                                                                                                                                                  | Default                                             |
+|------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
+| `PROJECT_PATH`   | The path to the project root directory.                                                                                                                      | `"."`                                               |
+| `IMAGE_TAG`      | The default tag for the docker image. See [Python Docker Official Image](https://hub.docker.com/_/python) for supported tags and respective Dockerfile links | `"latest"`                                          |
+| `PYTHON_SETUP`   | Bash commands to setup your python environment. Default rely on `requirements.txt` to install project and test dependencies.                                 | `"pip install -r ${PROJECT_PATH}/requirements.txt"` |
+| `PYTEST_RUN_CMD` | Bash command to run pytest.                                                                                                                                  | `"pytest ${PROJECT_PATH}"`                          |
 
 ## Global Configuration of pytest