From df26ff1f136cd2fd09f69de1e500773f264955ae Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Thu, 16 Jan 2025 14:16:41 +0100 Subject: [PATCH] Fixing the test by activating the environment ? --- .github/workflows/tests.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index fc647040..cbb3392a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -50,7 +50,8 @@ jobs: make install-cpu - name: Run server tests run: | - pip install pytest + source ./.venv/bin/activate + uv pip install pytest export HF_TOKEN=${{ secrets.HF_TOKEN }} pytest -s -vv server/tests - name: Pre-commit checks