summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 83a28d55bc15c82effeb1890eb165998d848d3e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
before_script:
  - apt-get update
  - apt-get install -q -y python-pip libpq-dev python-dev
  - pip install -r requirements.txt
  - cp Makefile.example Makefile

variables:
  POSTGRES_DB: morrigan
  POSTGRES_USER: morrigan
  POSTGRES_PASSWORD: "morrigan"

services:
  - postgres:9.1

master:
  script: "make test_gitlab"
  only:
    - master