diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b3bb6195f8b389f7df76e62c4e86d852561246c7..60cf0253b7ce96b313c4a5d492eb40846425d1fe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,3 +28,27 @@ test_sqlite: - python manage.py makemigrations web && python manage.py migrate - coverage run --source web manage.py test -v3 - coverage report -m --omit="*/test*,*/migrations*,*debug_utils*" +test_python_3.7: + image: python:3.7 + script: + - cp "local_settings_ci_sqlite.py" "smash/smash/local_settings.py" + - cd smash + - python manage.py makemigrations web && python manage.py migrate + - coverage run --source web manage.py test -v3 + - coverage report -m --omit="*/test*,*/migrations*,*debug_utils*" +test_python_3.8: + image: python:3.8 + script: + - cp "local_settings_ci_sqlite.py" "smash/smash/local_settings.py" + - cd smash + - python manage.py makemigrations web && python manage.py migrate + - coverage run --source web manage.py test -v3 + - coverage report -m --omit="*/test*,*/migrations*,*debug_utils*" +test_python_latest: + image: python:latest + script: + - cp "local_settings_ci_sqlite.py" "smash/smash/local_settings.py" + - cd smash + - python manage.py makemigrations web && python manage.py migrate + - coverage run --source web manage.py test -v3 + - coverage report -m --omit="*/test*,*/migrations*,*debug_utils*"