kpsul/.gitlab-ci.yml

104 lines
3.3 KiB
YAML
Raw Normal View History

2020-05-08 12:47:03 +02:00
image: "python:3.7"
2018-08-05 18:34:05 +02:00
variables:
# GestioCOF settings
2017-09-12 00:14:52 +02:00
DBHOST: "postgres"
REDIS_HOST: "redis"
2017-10-10 15:26:14 +02:00
REDIS_PASSWD: "dummy"
# Cached packages
PIP_CACHE_DIR: "$CI_PROJECT_DIR/vendor/pip"
2017-09-12 00:14:52 +02:00
# postgres service configuration
POSTGRES_PASSWORD: "4KZt3nGPLVeWSvtBZPSM3fSzXpzEU4"
POSTGRES_USER: "cof_gestion"
POSTGRES_DB: "cof_gestion"
2017-09-30 02:39:45 +02:00
# psql password authentication
PGPASSWORD: $POSTGRES_PASSWORD
2021-02-18 17:30:28 +01:00
# apps to check migrations for
2021-02-18 17:41:52 +01:00
MIGRATION_APPS: "bda bds cofcms clubs events gestioncof kfet kfetauth kfetcms open petitscours shared"
2021-02-18 17:30:28 +01:00
2020-05-09 17:52:12 +02:00
.test_template:
before_script:
- mkdir -p vendor/{pip,apt}
- apt-get update -q && apt-get -o dir::cache::archives="vendor/apt" install -yqq postgresql-client libldap2-dev libsasl2-dev
- sed -E 's/^REDIS_HOST.*/REDIS_HOST = "redis"/' gestioasso/settings/secret_example.py > gestioasso/settings/secret.py
- sed -i.bak -E 's;^REDIS_PASSWD = .*$;REDIS_PASSWD = "";' gestioasso/settings/secret.py
# Remove the old test database if it has not been done yet
- psql --username=$POSTGRES_USER --host=$DBHOST -c "DROP DATABASE IF EXISTS test_$POSTGRES_DB"
2019-11-22 15:22:21 +01:00
- pip install --upgrade -r requirements-prod.txt coverage tblib
- python --version
after_script:
2018-10-01 13:47:52 +02:00
- coverage report
services:
2020-05-08 12:47:03 +02:00
- postgres:11.7
- redis:latest
cache:
key: test
paths:
- vendor/
# For GitLab CI to get coverage from build.
2018-10-06 15:45:32 +02:00
# Keep this disabled for now, as it may kill GitLab...
2018-10-05 23:16:06 +02:00
# coverage: '/TOTAL.*\s(\d+\.\d+)\%$/'
kfettest:
stage: test
extends: .test_template
variables:
DJANGO_SETTINGS_MODULE: "gestioasso.settings.cof_prod"
script:
2022-06-30 10:05:56 +02:00
- coverage run manage.py test kfet
2020-05-09 17:52:12 +02:00
coftest:
stage: test
extends: .test_template
variables:
DJANGO_SETTINGS_MODULE: "gestioasso.settings.cof_prod"
2020-05-14 23:38:06 +02:00
script:
- coverage run manage.py test gestioncof bda petitscours shared --parallel
2020-05-09 17:52:12 +02:00
bdstest:
stage: test
extends: .test_template
variables:
DJANGO_SETTINGS_MODULE: "gestioasso.settings.bds_prod"
2020-05-14 23:38:06 +02:00
script:
- coverage run manage.py test bds clubs events --parallel
2020-05-09 17:52:12 +02:00
linters:
stage: test
before_script:
- mkdir -p vendor/pip
- pip install --upgrade black isort flake8
script:
- black --check .
- isort --check --diff .
# Print errors only
- flake8 --exit-zero bda bds clubs gestioasso events gestioncof kfet petitscours provisioning shared
cache:
key: linters
paths:
- vendor/
2019-10-06 20:34:04 +02:00
# Check whether there are some missing migrations.
migration_checks:
stage: test
variables:
DJANGO_SETTINGS_MODULE: "gestioasso.settings.local"
2019-10-06 20:34:04 +02:00
before_script:
- mkdir -p vendor/{pip,apt}
- apt-get update -q && apt-get -o dir::cache::archives="vendor/apt" install -yqq postgresql-client libldap2-dev libsasl2-dev
- cp gestioasso/settings/secret_example.py gestioasso/settings/secret.py
- pip install --upgrade -r requirements-devel.txt
2019-10-06 20:34:04 +02:00
- python --version
2021-02-18 17:30:28 +01:00
script: python manage.py makemigrations --dry-run --check $MIGRATION_APPS
2019-10-06 20:34:04 +02:00
services:
# this should not be necessary…
2020-05-08 12:47:03 +02:00
- postgres:11.7
2019-10-06 20:34:04 +02:00
cache:
key: migration_checks
paths:
- vendor/