From 60d449cebba2ae7c9a5a1f470c8aec9ac10c71bd Mon Sep 17 00:00:00 2001 From: Prince D Rusweka Rwabongoya Date: Sat, 26 Apr 2025 04:21:44 -0400 Subject: [PATCH] Update backend-ci.yml --- .github/workflows/backend-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 8ca720b..5afdea9 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -71,7 +71,7 @@ jobs: - name: Install dependencies run: | python -m venv venv - source venv/bin/activate + source venv/bin/activate # Activate the virtual environment pip install -r backend/requirements.txt # Ensure all dependencies are installed, including requests pip install pytest-html @@ -99,7 +99,7 @@ jobs: env: BASE_URL: http://127.0.0.1:5000 run: | - source venv/bin/activate + source venv/bin/activate # Activate the virtual environment before running tests pytest backend/tests --html=backend/test-report.html --self-contained-html - name: Upload test report