From 0222aa9ea2d2d124444c55e7803526339d28c6ea Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Wed, 11 Feb 2026 12:54:49 -0500 Subject: [PATCH] .woodpecker.yaml pipeline updated with first-push FT testing --- .woodpecker.yaml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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