stages: - test python-test: image: python:3.11-slim stage: test before_script: - python -m pip install --upgrade pip - pip install pytest - pip install -e libs/core-shared - pip install -e libs/core-domain - pip install -e libs/core-db - pip install -e libs/core-dsl - pip install -e libs/core-events - pip install -e services/agent-service - pip install -e services/knowledge-service - pip install -e services/workflow-service - pip install -e services/runtime-service script: - python -m compileall libs services scripts tests - pytest -q