summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a4d3a85a8f8aa2c00c5a5dbaae8f15b12c229a39 (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 -q -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