From f8495e4b36fa8a01ffdbd72a33898178d5f5a2c7 Mon Sep 17 00:00:00 2001 From: Manny Date: Wed, 25 Mar 2026 09:55:33 -0400 Subject: [PATCH] Update ci.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Found The workflow installs test deps from the repo root (uv sync --group test), but pytest is defined in backend/pyproject.toml, so it never gets installed for the backend environment. I’m updating CI to sync the backend project explicitly before running tests. --- .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 c256ded..5ad52e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: with: python-version-file: "pyproject.toml" - name: Install dependencies - run: uv sync --group test + run: uv sync --directory backend --group test - run: uv run --directory backend python -c "from services.fetchers.retry import with_retry; from services.env_check import validate_env; print('Module imports OK')" - name: Run tests run: uv run --directory backend pytest tests -v --tb=short