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

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

stages:
  - unittest
  - install

unittest:
  script:
    - python3 -m unittest discover tests

install:
  script:
    - python3 setup.py install