Skip elasticsearch output integration test in short mode
This commit is contained in:
parent
3bf45f9365
commit
a855718cd9
|
@ -57,6 +57,10 @@ func TestTemplateManagementEmptyTemplate(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestTemplateManagement(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"}
|
urls := []string{"http://" + testutil.GetLocalHost() + ":9200"}
|
||||||
|
|
||||||
e := &Elasticsearch{
|
e := &Elasticsearch{
|
||||||
|
|
Loading…
Reference in New Issue