Files
opensearch-pyd/.travis.yml
T

35 lines
888 B
YAML
Raw Normal View History

2013-05-01 16:37:32 +02:00
language: python
2015-08-28 17:41:42 +02:00
sudo: false
2013-05-01 16:37:32 +02:00
python:
- "2.6"
- "2.7"
- "3.3"
2014-06-21 13:19:11 -07:00
- "3.4"
2016-06-10 15:01:50 +02:00
- "3.5"
2016-06-10 15:08:11 +02:00
jdk:
- "oraclejdk8"
env:
# different connection classes to test
- TEST_ES_CONNECTION=Urllib3HttpConnection
- TEST_ES_CONNECTION=RequestsHttpConnection
2013-05-01 16:37:32 +02:00
install:
2016-06-10 15:01:50 +02:00
- 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"
- unzip /tmp/es-snap.zip -d /tmp/
- mv /tmp/elasticsearch-5.0.0-SNAPSHOT /tmp/elasticsearch
- /tmp/elasticsearch/bin/elasticsearch -E script.inline=true -E path.repo=/tmp -E repositories.url.allowed_urls='http://*' -E node.attr.testattr=test
2015-04-22 22:45:46 +02:00
- git clone https://github.com/elastic/elasticsearch.git ../elasticsearch
- pip install .
2013-05-01 16:37:32 +02:00
script:
2014-01-18 21:08:15 +01:00
- python setup.py test
2015-04-22 22:45:46 +02:00
notifications:
email:
recipients:
- [email protected]