2020-06-03 06:29:53 +00:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
|
2020-06-15 01:37:13 +00:00
|
|
|
python:
|
2020-06-03 06:29:53 +00:00
|
|
|
stage: test
|
2020-06-15 01:37:13 +00:00
|
|
|
image: python:3.8
|
2020-06-03 06:29:53 +00:00
|
|
|
services:
|
|
|
|
- name: liminspace/mjml-tcpserver:latest
|
|
|
|
alias: mjml
|
2020-06-12 06:15:25 +00:00
|
|
|
- postgres:9.6
|
|
|
|
variables:
|
|
|
|
POSTGRES_USER: postgres
|
2020-06-15 01:41:13 +00:00
|
|
|
POSTGRES_DB: birdsong
|
2020-06-12 06:15:25 +00:00
|
|
|
POSTGRES_PASSWORD: ""
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
2020-06-03 06:33:52 +00:00
|
|
|
before_script:
|
2020-06-14 23:04:53 +00:00
|
|
|
- pip3 install psycopg2-binary~=2.8.0 -e .
|
2020-06-03 06:29:53 +00:00
|
|
|
script:
|
2020-06-15 01:37:13 +00:00
|
|
|
- python3 runtests.py --no-input
|