.gitlab-ci.yml 476 B

123456789101112131415161718
  1. stages:
  2. - test
  3. python-test:
  4. image: python:3.11-slim
  5. stage: test
  6. before_script:
  7. - python -m pip install --upgrade pip
  8. - pip install pytest
  9. - pip install -e libs/core-shared
  10. - pip install -e libs/core-domain
  11. - pip install -e libs/core-db
  12. - pip install -e libs/core-events
  13. - pip install -e services/agent-service
  14. - pip install -e services/knowledge-service
  15. script:
  16. - python -m compileall libs services scripts tests
  17. - pytest -q