22 lines
579 B
YAML
22 lines
579 B
YAML
stages:
|
|
- lint
|
|
- test
|
|
|
|
run-tests:
|
|
stage: test
|
|
image: fedora:latest
|
|
services:
|
|
- postgres:latest
|
|
variables:
|
|
DATABASE_HOST: postgres
|
|
DATABASE_USER: postgres
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
coverage: /^TOTAL.+?(\d+\%)$/
|
|
before_script:
|
|
- dnf install -y python3-devel python3-pip python3-coverage libpq-devel openldap-devel gcc chromium
|
|
script:
|
|
- cd uncloud_django_based/uncloud
|
|
- pip install -r requirements.txt
|
|
- cp uncloud/secrets_sample.py uncloud/secrets.py
|
|
- coverage run --source='.' ./manage.py test
|
|
- coverage report
|