summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 2b15d6c08878862fc457e86962c7321957e14fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
stages:
  - test

variables:
  IMAGE: $CI_REGISTRY_IMAGE:pipeline-$CI_PIPELINE_ID

image: registry.lan.tomvanderlee.com/docker-images/pyenv:latest

test:
  image: $IMAGE
  stage: test
  script:
    - pyenv install 3.12
    - pyenv global 3.12
    - pip install -r requirements.txt
    - pytest -m aoc