From b6f10e7c7f8409ce54a4a8655294dc163c04ac13 Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Date: Sun, 16 Sep 2012 21:47:00 +0530 Subject: [PATCH] Add comments to travis config. --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8b90ff7..f2bc3a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,24 @@ +# Using python for running the tests, using `cram` test framework. language: python + +# Python version to run tests with. python: - "2.7" + before_script: + + # Show the git version being used to test. - "git --version" + + # Install zsh. - "sudo apt-get install zsh" + + # Test config for git. - "git config --global user.name test" - "git config --global user.email test@test.test" + +# Install python requirements. install: "pip install -r requirements.txt --use-mirrors" + +# Run the tests. script: "make tests" -- 2.0.0