Commit 0f837fb0d1616610e591864c664a7c139709406d
1 parent
f821384d85
Fix grammar
Showing 1 changed file with 1 additions and 1 deletions Inline Diff
.travis.yml
1 | # Using python for running the tests, using `cram` test framework. | 1 | # Using python for running the tests, using the `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: | 8 | env: |
9 | # Default zsh | 9 | # Default zsh |
10 | - PPA="none" | 10 | - PPA="none" |
11 | # zsh 5 PPA | 11 | # zsh 5 PPA |
12 | - PPA="ppa:brainpower/testing" | 12 | - PPA="ppa:brainpower/testing" |
13 | 13 | ||
14 | install: | 14 | install: |
15 | # Add PPA if needed | 15 | # Add PPA if needed |
16 | - "./.travis-ci.sh" | 16 | - "./.travis-ci.sh" |
17 | # Install python requirements. | 17 | # Install python requirements. |
18 | - "pip install -r requirements.txt --use-mirrors" | 18 | - "pip install -r requirements.txt --use-mirrors" |
19 | # Install zsh. | 19 | # Install zsh. |
20 | - "sudo apt-get install zsh" | 20 | - "sudo apt-get install zsh" |
21 | 21 | ||
22 | before_script: | 22 | before_script: |
23 | 23 | ||
24 | # Show the git version being used to test. | 24 | # Show the git version being used to test. |
25 | - "git --version" | 25 | - "git --version" |
26 | 26 | ||
27 | # Show the zsh version being used to test. | 27 | # Show the zsh version being used to test. |
28 | - "zsh --version" | 28 | - "zsh --version" |
29 | 29 | ||
30 | # Test config for git. | 30 | # Test config for git. |
31 | - "git config --global user.name test" | 31 | - "git config --global user.name test" |
32 | - "git config --global user.email test@test.test" | 32 | - "git config --global user.email test@test.test" |
33 | 33 | ||
34 | # Run the tests. | 34 | # Run the tests. |
35 | script: "make tests" | 35 | script: "make tests" |
36 | 36 |