2026-02-10 21:16:00 -05:00
|
|
|
steps:
|
2026-02-11 12:54:49 -05:00
|
|
|
- name: test-UTs
|
2026-02-10 21:16:00 -05:00
|
|
|
image: python:3.13-slim
|
|
|
|
|
commands:
|
2026-02-11 12:54:49 -05:00
|
|
|
- pip install -r requirements.txt
|
|
|
|
|
- cd ./src
|
|
|
|
|
- python manage.py test apps
|
2026-02-10 22:42:45 -05:00
|
|
|
|
2026-02-11 12:54:49 -05:00
|
|
|
- name: test-FTs
|
|
|
|
|
image: gitea.earthmanrpg.me/discoman/python-tdd-ci:latest
|
|
|
|
|
environment:
|
|
|
|
|
HEADLESS: 1
|
|
|
|
|
commands:
|
|
|
|
|
- cd ./src
|
2026-02-11 13:26:55 -05:00
|
|
|
- python manage.py collectstatic --noinput
|
2026-02-11 12:54:49 -05:00
|
|
|
- python manage.py test functional_tests
|
2026-02-11 15:12:04 -05:00
|
|
|
|
|
|
|
|
- name: screendumps
|
|
|
|
|
image: gitea.earthmanrpg.me/discoman/python-tdd-ci:latest
|
|
|
|
|
when:
|
|
|
|
|
- status: failure
|
|
|
|
|
commands:
|
|
|
|
|
- cat ./src/functional_tests/screendumps/*.html || echo "No screendumps found"
|
2026-02-10 22:42:45 -05:00
|
|
|
|