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 - git clone https://github.com/elasticsearch/elasticsearch.git ../elasticsearch - pip install . before_script: - /tmp/elasticsearch/bin/elasticsearch -d --path.data /tmp --discovery.zen.ping.multicast.enabled false --node.bench true --script.disable_dynamic false script: - python setup.py test