.travis.yml 437 B

12345678910111213141516171819202122
  1. ---
  2. language: python
  3. python: "2.7"
  4. before_install:
  5. # Make sure everything's up to date.
  6. - sudo apt-get update -qq
  7. - sudo apt-get install -qq python-apt python-pycurl git python-pip ruby ruby-dev bundler build-essential autoconf ruby-dep-selector
  8. install:
  9. - sudo pip install ansible
  10. script:
  11. - cd test
  12. - ansible --version
  13. - bundle install
  14. - bundle exec kitchen test travis
  15. after_success:
  16. - echo "Success"