| 123456789101112131415161718 |
- 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-events
- - pip install -e services/agent-service
- - pip install -e services/knowledge-service
- script:
- - python -m compileall libs services scripts tests
- - pytest -q
|