aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: fdd958152683ad44758be79f39af3ca80955e5c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
image: python:3.8.5-slim-buster

stages:
  - test

before_script:
   - pip install --upgrade pip
   - pip install pytest

tests:
  stage: test
  script:
    - python setup.py develop
    - pytest