30 lines
807 B
YAML
30 lines
807 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "pypy"
|
|
|
|
env:
|
|
# different connection classes to test
|
|
- TEST_ES_CONNECTION=Urllib3HttpConnection
|
|
- TEST_ES_CONNECTION=RequestsHttpConnection
|
|
|
|
install:
|
|
- mkdir /tmp/elasticsearch
|
|
- wget -O - http://s3-eu-west-1.amazonaws.com/build-eu.elasticsearch.org/origin/master/nightly/JDK7/elasticsearch-latest-SNAPSHOT.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
|
|
- /tmp/elasticsearch/bin/elasticsearch -d --path.data /tmp --discovery.zen.ping.multicast.enabled false --script.inline on --script.indexed on
|
|
- git clone https://github.com/elastic/elasticsearch.git ../elasticsearch
|
|
- pip install .
|
|
|
|
script:
|
|
- python setup.py test
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- [email protected]
|