diff --git a/x-pack/metricbeat/module/stan/channels/channels_integration_test.go b/x-pack/metricbeat/module/stan/channels/channels_integration_test.go index 1e9e31d58bc5..b26496982dd6 100644 --- a/x-pack/metricbeat/module/stan/channels/channels_integration_test.go +++ b/x-pack/metricbeat/module/stan/channels/channels_integration_test.go @@ -17,6 +17,7 @@ import ( ) func TestData(t *testing.T) { + t.Skip("tests failing: https://github.com/elastic/beats/issues/34844") service := compose.EnsureUp(t, "stan") m := mbtest.NewFetcher(t, getConfig(service.Host())) @@ -24,6 +25,7 @@ func TestData(t *testing.T) { } func TestFetch(t *testing.T) { + t.Skip("tests failing: https://github.com/elastic/beats/issues/34844") service := compose.EnsureUp(t, "stan") m := mbtest.NewFetcher(t, getConfig(service.Host())) diff --git a/x-pack/metricbeat/module/stan/stats/stats_integration_test.go b/x-pack/metricbeat/module/stan/stats/stats_integration_test.go index 5167767865ad..5175578d90eb 100644 --- a/x-pack/metricbeat/module/stan/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/stan/stats/stats_integration_test.go @@ -17,6 +17,7 @@ import ( ) func TestData(t *testing.T) { + t.Skip("tests failing: https://github.com/elastic/beats/issues/34844") service := compose.EnsureUp(t, "stan") m := mbtest.NewFetcher(t, getConfig(service.Host())) @@ -24,6 +25,7 @@ func TestData(t *testing.T) { } func TestFetch(t *testing.T) { + t.Skip("tests failing: https://github.com/elastic/beats/issues/34844") service := compose.EnsureUp(t, "stan") m := mbtest.NewFetcher(t, getConfig(service.Host())) diff --git a/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go b/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go index 0f58f940a607..fbdac4fe63c2 100644 --- a/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go +++ b/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go @@ -17,6 +17,7 @@ import ( ) func TestData(t *testing.T) { + t.Skip("tests failing: https://github.com/elastic/beats/issues/34844") service := compose.EnsureUp(t, "stan") m := mbtest.NewFetcher(t, getConfig(service.Host())) @@ -24,6 +25,7 @@ func TestData(t *testing.T) { } func TestFetch(t *testing.T) { + t.Skip("tests failing: https://github.com/elastic/beats/issues/34844") service := compose.EnsureUp(t, "stan") m := mbtest.NewFetcher(t, getConfig(service.Host())) diff --git a/x-pack/metricbeat/module/stan/test_stan.py b/x-pack/metricbeat/module/stan/test_stan.py index 11f862a31ba8..eff18dbd2e58 100644 --- a/x-pack/metricbeat/module/stan/test_stan.py +++ b/x-pack/metricbeat/module/stan/test_stan.py @@ -7,6 +7,7 @@ STAN_FIELDS = metricbeat.COMMON_FIELDS + ["stan"] +@unittest.skip("tests failing: https://github.com/elastic/beats/issues/34844") class TestStan(XPackTest): COMPOSE_SERVICES = ['stan']