forked from elastic/elasticsearch-dsl-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (28 loc) · 845 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
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
global:
- WAIT_FOR_ES=1
matrix:
# last 1.0.X for bw compatibility
- ES_VERSION=1.0.3
# two latest minor versions
- ES_VERSION=1.4.4
- ES_VERSION=1.5.1
install:
- mkdir /tmp/elasticsearch
- wget -O - https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
- /tmp/elasticsearch/bin/elasticsearch -d -D es.path.data=/tmp -D es.gateway.type=none -D es.index.store.type=memory -D es.discovery.zen.ping.multicast.enabled=false
- pip install git+https://github.com/elastic/elasticsearch-py.git#egg=elasticsearch
- pip install .
script:
- python setup.py test
notifications:
email:
recipients: