Skip to content
Snippets Groups Projects
Commit be24a902 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

test jobs for python 3.7, 3.8 and latest added

parent 5671ccc6
No related branches found
No related tags found
1 merge request!264Resolve "prepare installable debian package"
Pipeline #33795 passed
......@@ -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*"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment