Commit 94acbd901594eedc6ad94391575e9cd207dacc28
1 parent
436fc76fe4
Install zsh in the install phase.
Showing 1 changed file with 5 additions and 5 deletions Side-by-side Diff
.travis.yml
| ... | ... | @@ -13,15 +13,15 @@ before_script: |
| 13 | 13 | # Show the zsh version being used to test. |
| 14 | 14 | - "zsh --version" |
| 15 | 15 | |
| 16 | - # Install zsh. | |
| 17 | - - "sudo apt-get install zsh" | |
| 18 | - | |
| 19 | 16 | # Test config for git. |
| 20 | 17 | - "git config --global user.name test" |
| 21 | 18 | - "git config --global user.email test@test.test" |
| 22 | 19 | |
| 23 | -# Install python requirements. | |
| 24 | -install: "pip install -r requirements.txt --use-mirrors" | |
| 20 | +install: | |
| 21 | + # Install python requirements. | |
| 22 | + - "pip install -r requirements.txt --use-mirrors" | |
| 23 | + # Install zsh. | |
| 24 | + - "sudo apt-get install zsh" | |
| 25 | 25 | |
| 26 | 26 | # Run the tests. |
| 27 | 27 | script: "make tests" |