aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 9750b1eefed8d64f470f9163dd33a1667cc4874e (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: test
  script:
    - python3 -m unittest discover tests

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