Updated the .travis.yml file to hopefully work.

Added the "install" key and added "sudo" for starting the test script.
This commit is contained in:
Marcus Whybrow 2012-06-06 00:31:52 +01:00
parent 22278b516f
commit 2aedc5a19f

View File

@ -1,5 +1,14 @@
# Use python as its the simplest language which can run a test script
language: python language: python
# Install shunit2
before_install: before_install:
- sudo apt-get update - sudo apt-get update
- sudo apt-get install shunit2 - sudo apt-get install shunit2
script: ./test.sh
# Override the default Travis python installation with nothing
install:
# Run the test script
script: sudo ./test.sh