Files
python-tdd/.woodpecker.yaml
Disco DeDisco 0222aa9ea2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
.woodpecker.yaml pipeline updated with first-push FT testing
2026-02-11 12:54:49 -05:00

17 lines
360 B
YAML

steps:
- name: test-UTs
image: python:3.13-slim
commands:
- pip install -r requirements.txt
- cd ./src
- python manage.py test apps
- name: test-FTs
image: gitea.earthmanrpg.me/discoman/python-tdd-ci:latest
environment:
HEADLESS: 1
commands:
- cd ./src
- python manage.py test functional_tests