.travis.yml 444 B

123456789101112131415161718192021
  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 build-essential autoconf
  8. - gem install bundler
  9. install:
  10. - sudo pip install ansible
  11. script:
  12. - ansible --version
  13. - export TRAVIS=True
  14. - bundle install
  15. - bundle exec kitchen test travis
  16. after_success:
  17. - echo "Success"