From 94acbd901594eedc6ad94391575e9cd207dacc28 Mon Sep 17 00:00:00 2001 From: Guilherme Espada Date: Thu, 25 Apr 2013 18:39:59 +0200 Subject: [PATCH] Install zsh in the install phase. --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2d48d31..288d99e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,15 +13,15 @@ before_script: # Show the zsh version being used to test. - "zsh --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" +install: + # Install python requirements. + - "pip install -r requirements.txt --use-mirrors" + # Install zsh. + - "sudo apt-get install zsh" # Run the tests. script: "make tests" -- 2.0.0