.gitlab-ci.yml 305 B

123456789101112131415161718192021
  1. image: python:3.7
  2. stages:
  3. - static
  4. - test
  5. mypy:
  6. stage: static
  7. before_script:
  8. - pip install mypy
  9. script:
  10. - mypy techrec
  11. test:
  12. stage: test
  13. before_script:
  14. - pip install pytest pytest-asyncio
  15. - pip install -r requirements.txt
  16. - mkdir techrec/output
  17. script:
  18. - pytest