.travis.yml 324 B

1234567891011121314151617181920
  1. ---
  2. sudo: false
  3. cache:
  4. - pip
  5. language: python
  6. python:
  7. - "2.7"
  8. - "3.5"
  9. install:
  10. - pip install -r requirements.txt
  11. - pip install tox-travis
  12. script:
  13. # TODO(rhcarvalho): check syntax of other important entrypoint playbooks
  14. - ansible-playbook --syntax-check playbooks/byo/config.yml
  15. - tox
  16. - cd utils && tox