Skip to content

Commit

Permalink
run integration tests with latest etcd
Browse files Browse the repository at this point in the history
  • Loading branch information
staffanm committed Jul 28, 2016
1 parent 594a0e6 commit d56dab9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ python:
- "2.6"

before_install:
- curl -L https://github.com/coreos/etcd/releases/download/v2.2.4/etcd-v2.2.4-linux-amd64.tar.gz -o etcd-v2.2.4-linux-amd64.tar.gz
- tar xzvf etcd-v2.2.4-linux-amd64.tar.gz
- cd etcd-v2.2.4-linux-amd64
- curl -L https://github.com/coreos/etcd/releases/download/v3.0.4/etcd-v3.0.4-linux-amd64.tar.gz -o etcd-v3.0.4-linux-amd64.tar.gz
- tar xzvf etcd-v3.0.4-linux-amd64.tar.gz
- cd etcd-v3.0.4-linux-amd64
- ./etcd > /dev/null &
- cd ..

Expand All @@ -26,4 +26,4 @@ script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then PYTHONWARNINGS=i coverage run --include "layeredconfig/*py" -m unittest2 discover tests; fi
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then PYTHONWARNINGS=i coverage run --include "layeredconfig/*py" -m unittest discover tests; fi
after_success:
- coveralls
- coveralls

0 comments on commit d56dab9

Please sign in to comment.