Is there a way to run functional tests against older version of Kibana?

For older versions of Kibana plugin development, I tried to run functional tests on Kibana but it failed to download the required Elasticsearch as it seems to use SNAPSHOT every time instead of the correct version of es. Is there a way to download the correct version of es and run the functional tests, for plugin dev environment?

Hello @aaronoah,

You can get past releases of elasticsearch by replacing the X-X-X with the version that you are looking for

https://www.elastic.co/fr/downloads/past-releases/elasticsearch-X-X-X

for the 6.2.0 try

https://www.elastic.co/fr/downloads/past-releases/elasticsearch-6-2-0

Mehdi.

The issue is the functional_tests script automatically uses the url like: https://snapshots.elastic.co/downloads/elasticsearch/elasticsearch-oss-x.x.x-SNAPSHOT.tar.gz and it throws not found error. I wonder what should I do to use the correct url for es archive download.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.