Blame view

repos/zsh-users/antigen/.travis.yml 727 Bytes
ddbb98497   mj   Squashed 'repos/z...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  # Using python for running the tests, using the `cram` test framework.
  language: python
  
  # Python version to run tests with.
  python:
    - "2.7"
  
  env:
    # Default zsh
    - PPA="none"
    # zsh 5 PPA
    - PPA="ppa:brainpower/testing"
  
  before_script:
  
    # Show the git version being used to test.
    - "git --version"
  
    # Show the zsh version being used to test.
    - "zsh --version"
  
    # Test config for git.
    - "git config --global user.name test"
    - "git config --global user.email test@test.test"
  
  install:
    # Add PPA if needed
    - "./travis-ppa.sh"
    # Install python requirements.
    - "pip install -r requirements.txt --use-mirrors"
    # Install zsh.
    - "sudo apt-get install zsh"
  
  # Run the tests.
  script: "make tests PYENV="