From 65957d78ecca96a4762bbd62adcfc2b22b96bf68 Mon Sep 17 00:00:00 2001 From: ribardej Date: Wed, 29 Oct 2025 14:07:06 +0100 Subject: [PATCH] fix(tests): fixed testing DB deployment --- .github/workflows/run-tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9573551..0183ae3 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -71,5 +71,10 @@ jobs: working-directory: ./7project/backend - name: Run tests with pytest + env: + MARIADB_HOST: mariadb + MARIADB_DB: group_project # Make sure this matches the service DB + MARIADB_USER: appuser + MARIADB_PASSWORD: apppass run: pytest working-directory: ./7project/backend \ No newline at end of file