| 1234567891011121314151617181920212223 | 
							- ---
 
- language: python
 
- python: "2.7"
 
- before_install:
 
-   # Make sure everything's up to date.
 
-   - sudo apt-get update -qq
 
-   - sudo apt-get install -qq python-apt python-pycurl git python-pip ruby ruby-dev build-essential autoconf
 
-   - gem install bundler
 
- install:
 
-   - sudo pip install ansible
 
- script:
 
-     #- cd test
 
-     - ansible --version
 
-     - bundle install
 
-     - KITCHEN_YAML=.kitchen.travis.yml bundle exec kitchen test travis
 
- after_success:
 
-     - echo "Success"
 
 
  |