forked from felipec/git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (34 loc) · 859 Bytes
/
.travis.yml
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
36
37
language: python
python:
- "2.6"
- "2.7"
install:
- pip install -q --use-mirrors Mercurial${HG_VERSION+==$HG_VERSION} || true
- pip install -q --use-mirrors bzr${BZR_VERSION+==$BZR_VERSION} || true
- pip install -q --use-mirrors 'dulwich<=0.9.0' hg-git || true
script:
- hg --version || true
- bzr --version || true
- pip show hg-git dulwich
- export GIT_TEST_OPTS='-v'
- export PYTHON_PATH="$(which python)"
- make
- make -C t remote-helpers-test
matrix:
include:
- python: 2.7
env: BZR_VERSION=2.6b2
- python: 2.7
env: BZR_VERSION=2.5.1
- python: 2.7
env: BZR_VERSION=2.2.3
- python: 2.7
env: HG_VERSION=2.6.1
- python: 2.7
env: HG_VERSION=2.4
- python: 2.7
env: HG_VERSION=2.2
- python: 2.7
env: HG_VERSION=2.0
- python: 2.7
env: HG_VERSION=1.9.3