Skip to content

Commit

Permalink
Update ES test version to 7.0.0-alpha1
Browse files Browse the repository at this point in the history
6.0.0-beta1 snapshot does not exist as its not a snapshot anymore. Also master should be tested againts ES 7.0.0-alpha1.
  • Loading branch information
ruflin committed Sep 11, 2017
1 parent 9f2795e commit 4734b17
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions libbeat/dashboards/es_loader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ func TestImporter(t *testing.T) {
}

client := elasticsearch.GetTestingElasticsearch(t)
if strings.HasPrefix(client.Connection.GetVersion(), "6.") {
if strings.HasPrefix(client.Connection.GetVersion(), "6.") ||
strings.HasPrefix(client.Connection.GetVersion(), "7.") {
t.Skip("Skipping tests for Elasticsearch 6.x releases")
}

Expand Down Expand Up @@ -60,7 +61,8 @@ func TestImporterEmptyBeat(t *testing.T) {
}

client := elasticsearch.GetTestingElasticsearch(t)
if strings.HasPrefix(client.Connection.GetVersion(), "6.") {
if strings.HasPrefix(client.Connection.GetVersion(), "6.") ||
strings.HasPrefix(client.Connection.GetVersion(), "7.") {
t.Skip("Skipping tests for Elasticsearch 6.x releases")
}

Expand Down
4 changes: 2 additions & 2 deletions testing/environments/args.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ services:
build:
args:
DOWNLOAD_URL: https://snapshots.elastic.co/downloads
ELASTIC_VERSION: 6.0.0-beta1-SNAPSHOT
CACHE_BUST: 20170720
ELASTIC_VERSION: 7.0.0-alpha1-SNAPSHOT
CACHE_BUST: 20170911

0 comments on commit 4734b17

Please sign in to comment.