use pre-built dervish-ci image with pytest; no pip install in pipeline
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/manual/woodpecker Pipeline failed

This commit is contained in:
tobjend 2026-07-01 13:20:56 +02:00
parent 6191427983
commit 701c5649c7
2 changed files with 5 additions and 2 deletions

View file

@ -3,7 +3,8 @@ when:
steps:
test:
image: python:3.11-slim
image: forgejo.corentic.eu/tobi/dervish-ci:latest
environment:
PYTHONPATH: .
commands:
- pip install --no-cache-dir --editable . pytest
- python -m pytest tests/ -v

2
Dockerfile.ci Normal file
View file

@ -0,0 +1,2 @@
FROM python:3.11-slim
RUN pip install --no-cache-dir pytest