Commit f821384d854507103c6544e78afa30335a4d37b4

Authored by Guilherme Espada
1 parent 8a10e63106

Reorganize Travis-CI file

Make the steps appear in the order they are executed

Showing 1 changed file with 14 additions and 14 deletions Inline Diff

1 # Using python for running the tests, using `cram` test framework. 1 # Using python for running the tests, using `cram` test framework.
2 language: python 2 language: python
3 3
4 # Python version to run tests with. 4 # Python version to run tests with.
5 python: 5 python:
6 - "2.7" 6 - "2.7"
7 7
8 env:
9 # Default zsh
10 - PPA="none"
11 # zsh 5 PPA
12 - PPA="ppa:brainpower/testing"
13
14 install:
15 # Add PPA if needed
16 - "./.travis-ci.sh"
17 # Install python requirements.
18 - "pip install -r requirements.txt --use-mirrors"
19 # Install zsh.
20 - "sudo apt-get install zsh"
21
8 before_script: 22 before_script:
9 23
10 # Show the git version being used to test. 24 # Show the git version being used to test.
11 - "git --version" 25 - "git --version"
12 26
13 # Show the zsh version being used to test. 27 # Show the zsh version being used to test.
14 - "zsh --version" 28 - "zsh --version"
15 29
16 # Test config for git. 30 # Test config for git.
17 - "git config --global user.name test" 31 - "git config --global user.name test"
18 - "git config --global user.email test@test.test" 32 - "git config --global user.email test@test.test"
19 33
20 install:
21 # Add PPA if needed
22 - "./.travis-ci.sh"