Commit 436fc76fe4a1d44de35d76e31550cad4148bac57

Authored by Guilherme Espada
1 parent e6888036d8

Show zsh version on CI build

Showing 1 changed file with 3 additions and 0 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 before_script: 8 before_script:
9 9
10 # Show the git version being used to test. 10 # Show the git version being used to test.
11 - "git --version" 11 - "git --version"
12 12
13 # Show the zsh version being used to test.
14 - "zsh --version"
15
13 # Install zsh. 16 # Install zsh.
14 - "sudo apt-get install zsh" 17 - "sudo apt-get install zsh"
15 18
16 # Test config for git. 19 # Test config for git.
17 - "git config --global user.name test" 20 - "git config --global user.name test"
18 - "git config --global user.email test@test.test" 21 - "git config --global user.email test@test.test"
19 22
20 # Install python requirements. 23 # Install python requirements.
21 install: "pip install -r requirements.txt --use-mirrors" 24 install: "pip install -r requirements.txt --use-mirrors"
22 25
23 # Run the tests. 26 # Run the tests.
24 script: "make tests" 27 script: "make tests"
25 28