Commit 3df611a3c992dca7c717880103aaf0b80c723841
1 parent
94acbd9015
Add zsh 5 PPA for testing
Showing 1 changed file with 8 additions and 0 deletions Side-by-side Diff
.travis.yml
... | ... | @@ -22,6 +22,14 @@ install: |
22 | 22 | - "pip install -r requirements.txt --use-mirrors" |
23 | 23 | # Install zsh. |
24 | 24 | - "sudo apt-get install zsh" |
25 | + # Add PPA if needed | |
26 | + - 'if [ "$PPA" != "none" ]; then sudo apt-add-repository -y "$PPA"; sudo apt-get update -qq; fi' | |
25 | 27 | |
26 | 28 | # Run the tests. |
27 | 29 | script: "make tests" |
30 | + | |
31 | +env: | |
32 | + # Default zsh | |
33 | + - PPA = "none" | |
34 | + # zsh 5 PPA | |
35 | + - PPA = "ppa:brainpower/testing" |