From e109a7e3755e42bf1230cea1eabfa8943fe7d56f Mon Sep 17 00:00:00 2001
From: Dorian Turba <froggit.commit.z3jqj@simplelogin.com>
Date: Wed, 12 Jul 2023 11:16:40 +0200
Subject: [PATCH] update pytest

---
 templates/python/testing/pytest/README.md  | 3 ++-
 templates/python/testing/pytest/pytest.yml | 9 +++++----
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/templates/python/testing/pytest/README.md b/templates/python/testing/pytest/README.md
index e006bb4..9019087 100644
--- a/templates/python/testing/pytest/README.md
+++ b/templates/python/testing/pytest/README.md
@@ -16,8 +16,9 @@ automation, modular fixtures, parameterized testing, and many other features.
 
 | Name           | Description                                                                                                                                                  | Default                  |
 |----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------|
-| `PYTHON_SETUP` | Bash commands to setup your python environment. Default rely on `pyproject.toml` to install project and test dependencies.                                   | `"pip install .[TESTS]"` |
+| `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]"` |
 
 ## Global Configuration of pytest
 
diff --git a/templates/python/testing/pytest/pytest.yml b/templates/python/testing/pytest/pytest.yml
index ad687e2..e106196 100644
--- a/templates/python/testing/pytest/pytest.yml
+++ b/templates/python/testing/pytest/pytest.yml
@@ -2,16 +2,17 @@ pytest:
     image: python:${IMAGE_TAG}
     stage: test
     variables:
-        PYTHON_SETUP: "pip install .[TESTS]"
         IMAGE_TAG: "latest"
+        PROJECT_PATH: "."
+        PYTHON_SETUP: "pip install ${PROJECT_PATH}[TESTS]"
     script:
         - python --version  # Debug
         - python -m venv venv --upgrade-deps || python -m venv venv  # upgrade-deps is not supported before 3.9
         - source venv/bin/activate
         - ${PYTHON_SETUP}
-        - pytest
+        - pytest ${PROJECT_PATH}
     only:
         changes:
-            - ./**/*.py
+            - ${PROJECT_PATH}/**/*.py
             - .gitlab-ci.yml
-            - pyproject.toml
+            - ${PROJECT_PATH}/pyproject.toml
-- 
GitLab