Use the new settings in gitlab-ci
This commit is contained in:
parent
9a3914ece6
commit
7a52e841e6
1 changed files with 27 additions and 5 deletions
|
@ -2,7 +2,6 @@ image: "python:3.7"
|
|||
|
||||
variables:
|
||||
# GestioCOF settings
|
||||
DJANGO_SETTINGS_MODULE: "cof.settings.prod"
|
||||
DBHOST: "postgres"
|
||||
REDIS_HOST: "redis"
|
||||
REDIS_PASSWD: "dummy"
|
||||
|
@ -18,8 +17,7 @@ variables:
|
|||
# psql password authentication
|
||||
PGPASSWORD: $POSTGRES_PASSWORD
|
||||
|
||||
test:
|
||||
stage: test
|
||||
.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
|
||||
|
@ -44,6 +42,19 @@ test:
|
|||
# Keep this disabled for now, as it may kill GitLab...
|
||||
# coverage: '/TOTAL.*\s(\d+\.\d+)\%$/'
|
||||
|
||||
coftest:
|
||||
stage: test
|
||||
extends: .test_template
|
||||
variables:
|
||||
DJANGO_SETTINGS_MODULE: "cof.settings.cof_prod"
|
||||
|
||||
bdstest:
|
||||
stage: test
|
||||
extends: .test_template
|
||||
variables:
|
||||
DJANGO_SETTINGS_MODULE: "cof.settings.bds_prod"
|
||||
|
||||
|
||||
linters:
|
||||
stage: test
|
||||
before_script:
|
||||
|
@ -60,8 +71,7 @@ linters:
|
|||
- vendor/
|
||||
|
||||
# Check whether there are some missing migrations.
|
||||
migration_checks:
|
||||
stage: test
|
||||
.migration_checks_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
|
||||
|
@ -76,3 +86,15 @@ migration_checks:
|
|||
key: migration_checks
|
||||
paths:
|
||||
- vendor/
|
||||
|
||||
cof_migration_checks:
|
||||
stage: test
|
||||
extends: .migration_checks_template
|
||||
variables:
|
||||
DJANGO_SETTINGS_MODULE: "cof.settings.cof_prod"
|
||||
|
||||
bds_migration_checks:
|
||||
stage: test
|
||||
extends: .migration_checks_template
|
||||
variables:
|
||||
DJANGO_SETTINGS_MODULE: "cof.settings.bds_prod"
|
||||
|
|
Loading…
Reference in a new issue