From 2aedc5a19f9a17ea0021a31ce3764940ec8804d1 Mon Sep 17 00:00:00 2001 From: Marcus Whybrow Date: Wed, 6 Jun 2012 00:31:52 +0100 Subject: [PATCH] Updated the .travis.yml file to hopefully work. Added the "install" key and added "sudo" for starting the test script. --- .travis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 09dcf94..db22b0b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,14 @@ + +# Use python as its the simplest language which can run a test script language: python + +# Install shunit2 before_install: - sudo apt-get update - sudo apt-get install shunit2 -script: ./test.sh \ No newline at end of file + +# Override the default Travis python installation with nothing +install: + +# Run the test script +script: sudo ./test.sh \ No newline at end of file