# Generated by chant migrate from input.yml

stages:
  - test
workflow:
  rules:
    - if: '$CI_PIPELINE_SOURCE == "push"'

test:
  image: python:3.12
  cache:
    paths:
      - .cache/pip/
  script:
    - pip install -r requirements.txt
    - pytest
  stage: test
