From cedbae6a389e725a4b3231a9e62a4feb59b76e82 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:13:02 +0100
Subject: [PATCH] add tests on django 1.11 on gitlab CI

---
 .gitlab-ci.yml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 83101ec..6985f17 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,6 +23,30 @@ stages:
     extends: ".test"
     image: "python:3.8"
 
+python-2.7-django-1.11-test:
+    extends: ".test"
+    image: "python:2.7"
+    variables:
+      DJANGO_VERSION: '1.11'
+
+python-3.6-django-1.11-test:
+    extends: ".test"
+    image: "python:3.6"
+    variables:
+      DJANGO_VERSION: '1.11'
+
+python-3.7-django-1.11-test:
+    extends: ".test"
+    image: "python:3.7"
+    variables:
+      DJANGO_VERSION: '1.11'
+
+python-3.8-django-1.11-test:
+    extends: ".test"
+    image: "python:3.8"
+    variables:
+      DJANGO_VERSION: '1.11'
+
 python-3.6-django-2.2-test:
     extends: ".test"
     image: "python:3.6"
-- 
GitLab