Created
June 15, 2013 16:15
-
-
Save thedrow/5788607 to your computer and use it in GitHub Desktop.
The .travis.yml configuration file of python-baseline.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| language: ruby | |
| rvm: | |
| - 1.9.3 | |
| language: python | |
| python: | |
| - "2.7" | |
| install: | |
| - pip install -r requirements.txt --use-mirrors | |
| - sudo apt-get update -q | |
| - sudo apt-get install -q virtualbox --fix-missing # Everything falls apart here exactly. | |
| - sudo wget -nv http://files.vagrantup.com/packages/7e400d00a3c5a0fdf2809c8b5001a035415a607b/vagrant_1.2.2_x86_64.deb | |
| - sudo dpkg -i vagrant_1.2.2_x86_64.deb | |
| - sudo vagrant plugin install vagrant-plugin-bundler | |
| script: | |
| - sudo vagrant up # The error is only presented when executing vagrant up | |
| - nose2 --verbose | |
| - sudo vagrant package python-baseline | |
| after-script: | |
| - sudo vagrant halt | |
| - sudo vagrant destroy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment