From 24551a646d2b5e6d2ba3fdc7aeb56194b4cf7c35 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Herv=C3=A9=20M=C3=A9nager?= <herve.menager@gmail.com>
Date: Mon, 7 Dec 2020 20:08:07 +0100
Subject: [PATCH] test on more python/django versions

---
 .gitlab-ci.yml | 54 +++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 53 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 917636e..83101ec 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,8 +19,60 @@ stages:
     extends: ".test"
     image: "python:3.7"
 
+.python-3.8-django-test:
+    extends: ".test"
+    image: "python:3.8"
+
+python-3.6-django-2.2-test:
+    extends: ".test"
+    image: "python:3.6"
+    variables:
+      DJANGO_VERSION: '2.2'
+
+python-3.6-django-3.0-test:
+    extends: ".test"
+    image: "python:3.6"
+    variables:
+      DJANGO_VERSION: '3.0'
+
 python-3.6-django-3.1-test:
     extends: ".test"
     image: "python:3.6"
     variables:
-      DJANGO_VERSION: '3.1.4'
\ No newline at end of file
+      DJANGO_VERSION: '3.1'
+
+python-3.7-django-2.2-test:
+    extends: ".test"
+    image: "python:3.7"
+    variables:
+      DJANGO_VERSION: '2.2'
+
+python-3.7-django-3.0-test:
+    extends: ".test"
+    image: "python:3.7"
+    variables:
+      DJANGO_VERSION: '3.0'
+
+python-3.7-django-3.1-test:
+    extends: ".test"
+    image: "python:3.7"
+    variables:
+      DJANGO_VERSION: '3.1'
+
+python-3.8-django-2.2-test:
+    extends: ".test"
+    image: "python:3.8"
+    variables:
+      DJANGO_VERSION: '2.2'
+
+python-3.8-django-3.0-test:
+    extends: ".test"
+    image: "python:3.8"
+    variables:
+      DJANGO_VERSION: '3.0'
+
+python-3.8-django-3.1-test:
+    extends: ".test"
+    image: "python:3.8"
+    variables:
+      DJANGO_VERSION: '3.1'
\ No newline at end of file
-- 
GitLab