Files
python-sdk/.woodpecker/check.yml
pptx704 dc66ac24d5
All checks were successful
ci/woodpecker/pr/check Pipeline was successful
Updated woodpecker def
2026-05-02 04:50:11 +06:00

25 lines
478 B
YAML

when:
event: pull_request
branch:
- main
- dev
path:
- "src/**"
- "tests/**"
steps:
unit-tests:
image: ghcr.io/astral-sh/uv:python3.13-bookworm
commands:
- uv sync --dev
- uv run pytest -m "not integration" -v
integration-tests:
image: ghcr.io/astral-sh/uv:python3.13-bookworm
environment:
WRENN_API_KEY:
from_secret: WRENN_API_KEY
commands:
- uv sync --dev
- uv run pytest -m integration -v