diff --git a/.woodpecker.yaml b/.woodpecker.yaml index 03ce977..24dcc07 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -1,10 +1,16 @@ steps: - - name: test + - name: test-UTs image: python:3.13-slim commands: - - "pip install -r requirements.txt" - - "cd ./src" - - "python manage.py test apps" + - pip install -r requirements.txt + - cd ./src + - python manage.py test apps - # - name: test-FTs + - name: test-FTs + image: gitea.earthmanrpg.me/discoman/python-tdd-ci:latest + environment: + HEADLESS: 1 + commands: + - cd ./src + - python manage.py test functional_tests