From 06dcccb321384ab4d97a1ebfa778add59b138820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Trkan?= Date: Wed, 29 Oct 2025 14:28:25 +0100 Subject: [PATCH] fix(tests): add missing dependencies --- .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 1fe9501..ffa130e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -43,6 +43,11 @@ jobs: # Step 3: Install project dependencies # Runs shell commands to install the libraries listed in your requirements.txt. + - name: Add test dependencies to requirements + run: | + echo "pytest==8.4.2" >> ./7project/backend/requirements.txt + echo "pytest-asyncio==1.2.0" >> ./7project/backend/requirements.txt + - name: Install dependencies run: | python -m pip install --upgrade pip