diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 447dc7db112d174cff89706adb938db21a6948e7..bc2f7123472df5d326a30f09c6ba0e19ea2deb6e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -43,11 +43,19 @@ test36-django3:
     - pip install -r requirements.txt
     - coverage run --source='basetheme_bootstrap' manage.py test && coverage report  -m
 
-test37-django3:
+test37-django30:
   stage: test
   image: python:3.7
   script:
-    - pip install 'django>=3'
+    - pip install 'django==3.0.*'
+    - pip install -r requirements.txt
+    - coverage run --source='basetheme_bootstrap' manage.py test && coverage report  -m
+
+test37-django31:
+  stage: test
+  image: python:3.7
+  script:
+    - pip install 'django>=3.1'
     - pip install -r requirements.txt
     - coverage run --source='basetheme_bootstrap' manage.py test && coverage report  -m