.travis.yml 419 B

1234567891011121314
  1. ---
  2. language: python
  3. python: "2.7"
  4. before_install:
  5. - sudo apt-get update -qq
  6. - sudo apt-get install -qq python-apt python-pycurl
  7. install:
  8. - pip install ansible
  9. script:
  10. - "printf '[defaults]\nroles_path = ../' > ansible.cfg"
  11. - ansible-playbook -i tests/inventory --syntax-check tests/test.yml
  12. - ansible-playbook -i tests/inventory --connection=local --sudo -vvvv tests/test.yml
  13. notifications:
  14. email: false