Commit a46c71e3c8e81adfbe8cc5673af877db708aa445

Authored by Guilherme Espada

Merge branch 'patch-1' of github.com:GUIpsp/antigen into patch-1

Conflicts:
	.travis.yml

Showing 1 changed file Inline Diff

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:
9 # Default zsh
10 - PPA="none"
11 # zsh 5 PPA
12 - PPA="ppa:brainpower/testing"
13
14 before_script:
15
16 # Show the git version being used to test.
17 - "git --version"
18
19 # Show the zsh version being used to test.
20 - "zsh --version"
21
8 before_script: 22 # Test config for git.
9 23 - "git config --global user.name test"
10 # Show the git version being used to test. 24 - "git config --global user.email test@test.test"
11 - "git --version" 25
12 26 install:
13 # Show the zsh version being used to test. 27 # Add PPA if needed
14 - "zsh --version" 28 - "./travis-ppa.sh"
15 29 # Install python requirements.
16 # Test config for git. 30 - "pip install -r requirements.txt --use-mirrors"
17 - "git config --global user.name test" 31 # Install zsh.
18 - "git config --global user.email test@test.test" 32 - "sudo apt-get install zsh"
19 33
20 install:
21 # Add PPA if needed
22 - "./travis-ppa.sh"