From 5a3e2fd430bf4fed077cd256e90029aeb34cf5b4 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 9 Mar 2025 23:56:19 +0000 Subject: [PATCH] [workflows]: Fix requirements.txt path --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc69837..df6abe3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt + pip install -r server/src/requirements.txt # Run tests and generate coverage report - name: Run tests with coverage