From 5609470af2fa50e356d3b754b3ed445dcc1b0348 Mon Sep 17 00:00:00 2001 From: bronsen Date: Tue, 9 Dec 2025 23:31:40 +0100 Subject: [PATCH] [ci] perhaps /bin/sh prefers `.` over `source` --- .woodpecker/workflow.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/workflow.yaml b/.woodpecker/workflow.yaml index f6754b6..c29c80f 100644 --- a/.woodpecker/workflow.yaml +++ b/.woodpecker/workflow.yaml @@ -26,7 +26,7 @@ steps: image: docker.io/astral/uv:python${PYTHON_VERSION}-trixie-slim commands: - python -m venv venv - - source venv/bin/activate + - . venv/bin/activate - python -m pip install -r requirements.txt -r requirements.dev.txt - python -m pytest tests.py # coverage: uv run pytest tests.py --cov-report= --cov=src # no cov report on terminal: useful for CI