Skip to content

Commit 5e63ea4

Browse files
committed
hardcoded ES version in travis.yml
1 parent 618b69a commit 5e63ea4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- "3.3"
77
- "3.4"
88
- "3.5"
9+
- "3.6"
910

1011
addons:
1112
apt:
@@ -14,16 +15,16 @@ addons:
1415

1516
env:
1617
# different connection classes to test
17-
- TEST_ES_CONNECTION=Urllib3HttpConnection ES_VERSION=5.2.0
18-
- TEST_ES_CONNECTION=RequestsHttpConnection ES_VERSION=5.2.0
18+
- TEST_ES_CONNECTION=Urllib3HttpConnection
19+
- TEST_ES_CONNECTION=RequestsHttpConnection
1920

2021
before_install:
2122
- sudo update-java-alternatives -s java-8-oracle
2223
- export JAVA_HOME=/usr/lib/jvm/java-8-oracle/jre
2324
- java -version
2425

2526
install:
26-
- curl -L -o /tmp/es-snap.zip https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}.zip
27+
- curl -L -o /tmp/es-snap.zip https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.3.0.zip
2728
- unzip /tmp/es-snap.zip -d /tmp/
2829
- /tmp/elasticsearch-*/bin/elasticsearch -E script.inline=true -E path.repo=/tmp -E repositories.url.allowed_urls='http://*' -E node.attr.testattr=test -d
2930
- git clone https://github.com/elastic/elasticsearch.git ../elasticsearch

0 commit comments

Comments
 (0)