summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 46a25767bf4cc4bc461632d750293bf298222574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: python
python:
  - "2.7"
  - "3.3"

before_install:
  - ./build_etcd.sh v2.0.10
  - pip install --upgrade setuptools

# command to install dependencies
install: 
  - python bootstrap.py
  - bin/buildout

# command to run tests
script:
  PATH=$PATH:./etcd/bin bin/test

# Add env var to detect it during build
env: TRAVIS=True