[ci] quieten down pip install; install project into venv
Some checks failed
ci/woodpecker/push/workflow/2 Pipeline failed
ci/woodpecker/push/workflow/1 Pipeline failed

This commit is contained in:
bronsen 2025-12-09 23:43:23 +01:00
parent ccece213a3
commit 4d85dc4254

View file

@ -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