From f821384d854507103c6544e78afa30335a4d37b4 Mon Sep 17 00:00:00 2001 From: Guilherme Espada Date: Thu, 25 Apr 2013 22:42:01 +0200 Subject: [PATCH] Reorganize Travis-CI file Make the steps appear in the order they are executed --- .travis.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index c04d9f4..e00598d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,20 @@ language: python python: - "2.7" +env: + # Default zsh + - PPA="none" + # zsh 5 PPA + - PPA="ppa:brainpower/testing" + +install: + # Add PPA if needed + - "./.travis-ci.sh" + # Install python requirements. + - "pip install -r requirements.txt --use-mirrors" + # Install zsh. + - "sudo apt-get install zsh" + before_script: # Show the git version being used to test. @@ -17,19 +31,5 @@ before_script: - "git config --global user.name test" - "git config --global user.email test@test.test" -install: - # Add PPA if needed - - "./.travis-ci.sh" - # Install python requirements. - - "pip install -r requirements.txt --use-mirrors" - # Install zsh. - - "sudo apt-get install zsh" - # Run the tests. script: "make tests" - -env: - # Default zsh - - PPA="none" - # zsh 5 PPA - - PPA="ppa:brainpower/testing" -- 2.0.0