File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,18 @@ python:
7
7
- " 2.7"
8
8
- " 3.3"
9
9
- " 3.4"
10
+ - " 3.5"
10
11
11
12
env :
12
13
# different connection classes to test
13
14
- TEST_ES_CONNECTION=Urllib3HttpConnection
14
15
- TEST_ES_CONNECTION=RequestsHttpConnection
15
16
16
17
install :
17
- - mkdir /tmp/elasticsearch
18
- - wget -O - http://s3-eu-west-1.amazonaws.com/build.eu-west-1.elastic.co/origin/2.0/nightly/JDK7/elasticsearch-latest-SNAPSHOT.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
19
- - /tmp/elasticsearch/bin/elasticsearch -d --path.data /tmp --discovery.zen.ping.multicast.enabled false --script.inline on --script.indexed on --path.repo=/tmp --repositories.url.allowed_urls='http://*' --node.testattr=test
18
+ - wget -O /tmp/es-snap.zip "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=org.elasticsearch.distribution.zip&a=elasticsearch&e=zip&v=5.0.0-SNAPSHOT"
19
+ - unzip /tmp/es-snap.zip -d /tmp/
20
+ - mv /tmp/elasticsearch-5.0.0-SNAPSHOT /tmp/elasticsearch
21
+ - /tmp/elasticsearch/bin/elasticsearch -E script.inline=true -E path.repo=/tmp -E repositories.url.allowed_urls='http://*' -E node.attr.testattr=test
20
22
- git clone https://github.com/elastic/elasticsearch.git ../elasticsearch
21
23
- pip install .
22
24
You can’t perform that action at this time.
0 commit comments