From 0dd5cc885c84ae271e88c03e522b71c1af9df40b Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Fri, 1 May 2026 19:12:40 +0200 Subject: [PATCH] Use python from venv --- .gitea/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 5cbf939..e363a97 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -20,4 +20,5 @@ jobs: python3 -m poetry env info - name: Run the automated tests run: | - python3 -m poetry run python -m pytest tests + source .venv/bin/activate + poetry run pytest tests