.travis.yml 350 B

123456789101112131415
  1. sudo: false
  2. language: python
  3. python:
  4. - "2.7"
  5. install:
  6. - pip install -r requirements.txt
  7. script:
  8. # TODO(rhcarvalho): check syntax of other important entrypoint playbooks
  9. - ansible-playbook --syntax-check playbooks/byo/config.yml
  10. # TODO(rhcarvalho): update make ci to pick up these tests
  11. - nosetests --tests=test
  12. - cd utils && make ci