.gitlab-ci.yml 604 B

123456789101112131415161718192021
  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-dsl
  13. - pip install -e libs/core-events
  14. - pip install -e services/agent-service
  15. - pip install -e services/knowledge-service
  16. - pip install -e services/workflow-service
  17. - pip install -e services/runtime-service
  18. script:
  19. - python -m compileall libs services scripts tests
  20. - pytest -q