From 3510438242a0de6daf5d826dba455d5d9318e0c4 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Thu, 13 Nov 2025 14:05:31 +1100 Subject: [PATCH] tweaks --- .forgejo/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 9108f85..266c006 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -16,20 +16,22 @@ jobs: run: | apt-get update DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - python3 python3-venv pipx curl git ca-certificates nodejs + python3-venv pipx - name: Install Poetry run: | pipx install poetry==1.8.3 - poetry --version + /root/.local/bin/poetry --version - name: Install project deps (including test extras) env: - POETRY_VIRTUALENVS_IN_PROJECT: "true" + PATH: "$PATH:/root/.local/bin" run: | poetry install --with test - name: Run test script + env: + PATH: "$PATH:/root/.local/bin" run: | chmod +x ./tests.sh ./tests.sh