[ci] forego uv in favour of plain python venv

This commit is contained in:
bronsen 2025-12-05 17:57:40 +01:00
parent 18c3af8939
commit 0c294c46e4

View file

@ -22,7 +22,9 @@ steps:
- markdownlint-cli2 .
- name: Run Tests
image: ghcr.io/astral-uv/uv:python${PYTHON_VERSION}-trixie-slim
image: python:${PYTHON_VERSION}-slim
commands:
- uv install
- uv run pytest tests.py
- python -m venv venv
- . venv/bin/activate
- python -m pip install --disable-pip-version-check --no-input --quiet -r requirements.txt -r requirements.dev.txt
- python -m pytest tests.py