From 4d85dc4254b204dda5a53b4c8b337f504726417c Mon Sep 17 00:00:00 2001 From: bronsen Date: Tue, 9 Dec 2025 23:43:23 +0100 Subject: [PATCH] [ci] quieten down `pip install`; install project into venv --- .woodpecker/workflow.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.woodpecker/workflow.yaml b/.woodpecker/workflow.yaml index c29c80f..68bf7b5 100644 --- a/.woodpecker/workflow.yaml +++ b/.woodpecker/workflow.yaml @@ -27,6 +27,7 @@ steps: commands: - python -m venv venv - . venv/bin/activate - - python -m pip install -r requirements.txt -r requirements.dev.txt + - python -m pip install --no-deps --quiet -r requirements.txt -r requirements.dev.txt + - python -m pip install . - python -m pytest tests.py # coverage: uv run pytest tests.py --cov-report= --cov=src # no cov report on terminal: useful for CI