diff --git a/.woodpecker/workflow.yaml b/.woodpecker/workflow.yaml index 14f5fb1..8dfb6e3 100644 --- a/.woodpecker/workflow.yaml +++ b/.woodpecker/workflow.yaml @@ -22,9 +22,7 @@ steps: - markdownlint-cli2 . - name: Run Tests - image: python:${PYTHON_VERSION}-slim + image: docker.io/astral-uv/uv:python${PYTHON_VERSION}-trixie-slim commands: - - 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 + - uv install + - uv run pytest tests.py