From 58764b1e92ec2e665d33a3c2e0323bae2bf6d863 Mon Sep 17 00:00:00 2001 From: bronsen Date: Wed, 10 Dec 2025 00:07:49 +0100 Subject: [PATCH] [ci] install uv into venv, have uv handle the rest maybe this will work --- .woodpecker/workflow.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker/workflow.yaml b/.woodpecker/workflow.yaml index fa1f22f..42e1baf 100644 --- a/.woodpecker/workflow.yaml +++ b/.woodpecker/workflow.yaml @@ -26,6 +26,6 @@ steps: commands: - python -m venv venv - . venv/bin/activate - - python -m pip install --no-deps --quiet -r requirements.txt -r requirements.dev.txt - - uv run pytest tests.py + - pip install --disable-pip-version-check --require-virtualenv --quiet uv==0.9.16 + - uv run --active pytest tests.py # coverage: uv run pytest tests.py --cov-report= --cov=src # no cov report on terminal: useful for CI