ci: install newer version of uv

This commit is contained in:
bronsen 2026-02-14 23:16:27 +01:00
parent c7757643c2
commit 906dc732f2

View file

@ -26,6 +26,6 @@ steps:
commands: commands:
- python -m venv venv - python -m venv venv
- . venv/bin/activate - . venv/bin/activate
- pip install --disable-pip-version-check --require-virtualenv --quiet uv==0.9.16 - pip install --disable-pip-version-check --require-virtualenv --quiet uv==0.10.2
- uv run --active pytest tests.py - uv run --active pytest tests.py
# coverage: uv run pytest tests.py --cov-report= --cov=src # no cov report on terminal: useful for CI # coverage: uv run pytest tests.py --cov-report= --cov=src # no cov report on terminal: useful for CI