Skip to content
Snippets Groups Projects
.gitlab-ci.yml 511 B
Newer Older
nguyed99's avatar
nguyed99 committed
stages:
- build
- test-jobs
- test-tasks

nguyed99's avatar
nguyed99 committed
image: python:3.11-bullseye

nguyed99's avatar
nguyed99 committed
variables:
nguyed99's avatar
nguyed99 committed
  PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
nguyed99's avatar
nguyed99 committed
cache:
  paths:
    - .cache/pip
nguyed99's avatar
nguyed99 committed
build-env:
nguyed99's avatar
nguyed99 committed
  stage: build
  script:
nguyed99's avatar
nguyed99 committed
    - pip install poetry
    - cd build/
nguyed99's avatar
nguyed99 committed
    - poetry install --no-root
nguyed99's avatar
nguyed99 committed
  
test-jobs:
  stage: test-jobs
  script:
nguyed99's avatar
nguyed99 committed
    - source $(poetry env info --path)/bin/activate
nguyed99's avatar
nguyed99 committed
    - pytest jobs/tests/
nguyed99's avatar
nguyed99 committed
test-tasks:
  stage: test-tasks
nguyed99's avatar
nguyed99 committed
  script:
nguyed99's avatar
nguyed99 committed
    - source $(poetry env info --path)/bin/activate
nguyed99's avatar
nguyed99 committed
    - pytest tasks/tests/