summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 9350639c3d44a92781daf5ae281afcec8be88d14 (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/pyenv-images/:latest

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