hellocomputer/.woodpecker.yml

11 lines
371 B
YAML
Raw Normal View History

2024-05-25 22:13:21 +02:00
pipeline:
build-image:
2024-06-11 18:58:56 +02:00
image: python:3.12-slim
2024-05-25 22:13:21 +02:00
commands:
2024-06-11 18:58:56 +02:00
- pip install uv
- uv pip install --python /usr/local/bin/python3 --no-cache -r requirements.txt
- uv pip install --python /usr/local/bin/python3 -e .
- uv pip install --python /usr/local/bin/python3 pytest
- pytest ./tests/test_user.py
- pytest ./tests/test_data.py