diff --git a/tools/integration_tests/monitoring/prom_test.go b/tools/integration_tests/monitoring/prom_test.go index ce462de8f7..f0191078bb 100644 --- a/tools/integration_tests/monitoring/prom_test.go +++ b/tools/integration_tests/monitoring/prom_test.go @@ -242,9 +242,15 @@ func (testSuite *PromTest) TestReadMetrics() { } func TestPromOCSuite(t *testing.T) { + if setup.TestInstalledPackage() { + t.Skip("Skipping since testing on installed package") + } suite.Run(t, &PromTest{enableOTEL: false}) } func TestPromOTELSuite(t *testing.T) { + if setup.TestInstalledPackage() { + t.Skip("Skipping since testing on installed package") + } suite.Run(t, &PromTest{enableOTEL: true}) }