From 9308b343e59c493aaff92979d29c07fba8488cff Mon Sep 17 00:00:00 2001
From: Georg Krause <mail@georg-krause.net>
Date: Fri, 1 Apr 2022 11:27:53 +0200
Subject: [PATCH] Run tests in our own testing image and for all supported
 python versions

---
 .gitlab-ci.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 24070e6..3a21e94 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,10 @@ lint:
 
 test:
   stage: test
-  image: python:3.10-alpine
+  parallel:
+    matrix:
+      - PY_VER: ["3.7", "3.8", "3.9", "3.10"]
+  image: $CI_REGISTRY/funkwhale/backend-test-docker:$PY_VER
   before_script: 
     - pip install poetry
     - poetry install
-- 
GitLab