summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 15380592621ece6a0b83ec5b496cc99a30ee374c (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.5"

before_install:
  - ./build_etcd.sh v2.2.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