.travis.yml 468 B

1234567891011121314151617181920212223
  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. #- cd test
  13. - ansible --version
  14. - bundle install
  15. - KITCHEN_YAML=.kitchen.travis.yml bundle exec kitchen test travis
  16. after_success:
  17. - echo "Success"