Commit 94acbd901594eedc6ad94391575e9cd207dacc28
1 parent
436fc76fe4
Install zsh in the install phase.
Showing 1 changed file with 5 additions and 5 deletions Inline Diff
.travis.yml
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. | 13 | # Show the zsh version being used to test. |
14 | - "zsh --version" | 14 | - "zsh --version" |
15 | 15 | ||
16 | # Install zsh. | ||
17 | - "sudo apt-get install zsh" | ||
18 | |||
19 | # Test config for git. | 16 | # Test config for git. |
20 | - "git config --global user.name test" | 17 | - "git config --global user.name test" |
21 | - "git config --global user.email test@test.test" | 18 | - "git config --global user.email test@test.test" |
22 | 19 | ||
23 | # Install python requirements. | 20 | install: |
24 | install: "pip install -r requirements.txt --use-mirrors" | 21 | # Install python requirements. |
22 | - "pip install -r requirements.txt --use-mirrors" | ||
23 | # Install zsh. | ||
24 | - "sudo apt-get install zsh" | ||
25 | 25 |