summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 84f5360a89ac6f94e14b26c108b2c57b03a45bf6 (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 v0.3.0
  - 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