aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 2ccae859b78c0e484b7a92c452dd2432461c8c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
image: python:3.3

before_script:
  - python3 -v
  - which python
  - pip3 install psycopg2

stages:
  - unittest
  - integration

unittest:
  stage: unittest
  script:
    - python3 -m unittest discover tests

install:
  stage: integration
  script:
    - python3 setup.py install