diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7bde6e8865919ecc26b8ac1619fceee8771f6edd..3a413b5b8a27c855e77492e31b06ca781adb67e2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,6 +20,27 @@ test-centos7:
   - pip3.5 install mod_wsgi
   - python setup.py test
 
+test-python35:
+  image: python:3.5
+  stage: test
+  script:
+  - pip install -r requirements.txt
+  - python manage.py test
+
+test-python36:
+  image: python:3.6
+  stage: test
+  script:
+  - pip install -r requirements.txt
+  - python manage.py test
+
+test-python37:
+  image: python:3.7
+  stage: test
+  script:
+  - pip install -r requirements.txt
+  - python manage.py test
+
 pages:
   image: centos:centos7
   stage: deploy