17 lines
360 B
YAML
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
|
|
|