You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
778 B

  1. matrix:
  2. include:
  3. - language: python
  4. python:
  5. - "3.4"
  6. before_install:
  7. - cd cli
  8. install:
  9. - pip install -r requirements.txt -r test-requirements.txt
  10. script:
  11. - python -m unittest discover
  12. - language: python
  13. python:
  14. - "3.4"
  15. before_install:
  16. - cd containers/backend
  17. install:
  18. - pip install -r requirements.txt
  19. script:
  20. - python manage.py test
  21. - language: generic
  22. services:
  23. - docker
  24. before_script:
  25. - cd containers
  26. script:
  27. - ./test.sh
  28. - language: node_js
  29. node_js:
  30. - "lts/*"
  31. addons:
  32. chrome: stable
  33. cache: yarn
  34. install:
  35. - yarn install
  36. script:
  37. - yarn test