Skip to content

Commit

Permalink
Skip elasticsearch output integration test in short mode
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnelson committed Mar 27, 2017
1 parent 5612df4 commit 84a9f91
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/outputs/elasticsearch/elasticsearch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ func TestTemplateManagementEmptyTemplate(t *testing.T) {
}

func TestTemplateManagement(t *testing.T) {
if testing.Short() {
t.Skip("Skipping integration test in short mode")
}

urls := []string{"http://" + testutil.GetLocalHost() + ":9200"}

e := &Elasticsearch{
Expand Down

0 comments on commit 84a9f91

Please sign in to comment.