diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml index 595260f..c72d872 100644 --- a/.forgejo/workflows/test.yaml +++ b/.forgejo/workflows/test.yaml @@ -19,6 +19,8 @@ jobs: services: gisaf-database: image: code.philo.ydns.eu/philorg/gisaf-database + redis: + image: docker.io/redis:alpine steps: - name: Echo env if: ${{ inputs.verbose }} @@ -34,4 +36,4 @@ jobs: run: GISAF__DB__HOST=gisaf-database gisaf create-db - name: Run tests (API call) - run: GISAF__DB__HOST=gisaf-database pytest -s tests/basic.py -W ignore::DeprecationWarning + run: GISAF__DB__HOST=gisaf-database GISAF__GISAF_LIVE__REDIS=redis://redis pytest -s tests/basic.py -W ignore::DeprecationWarning