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

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

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