Alerting: Stop running AM integration tests on CI (#100702)

This commit is contained in:
Tito Lins
2025-02-14 16:55:20 +01:00
committed by GitHub
parent 6bd1041cda
commit e343cb5ac9
2 changed files with 3 additions and 3 deletions

View File

@ -247,7 +247,8 @@
"/pkg/services/sqlstore/migrations/ualert/**/*", "/pkg/services/sqlstore/migrations/ualert/**/*",
"/pkg/services/alerting/**/*", "/pkg/services/alerting/**/*",
"/public/app/features/alerting/**/*", "/public/app/features/alerting/**/*",
"/pkg/tests/api/alerting/**/*" "/pkg/tests/api/alerting/**/*",
"/pkg/tests/alertmanager/**/*"
], ],
"action": "updateLabel", "action": "updateLabel",
"addLabel": "area/alerting" "addLabel": "area/alerting"

View File

@ -7,13 +7,12 @@ import (
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
) )
func TestAlertmanagerIntegration_ExtraDedupStage(t *testing.T) { func TestAlertmanager_ExtraDedupStage(t *testing.T) {
if testing.Short() { if testing.Short() {
t.Skip("skipping integration test") t.Skip("skipping integration test")
} }
t.Run("assert no flapping alerts when stopOnExtraDedup is enabled", func(t *testing.T) { t.Run("assert no flapping alerts when stopOnExtraDedup is enabled", func(t *testing.T) {
t.Skip("skipping flaky test")
s, err := NewAlertmanagerScenario() s, err := NewAlertmanagerScenario()
require.NoError(t, err) require.NoError(t, err)
defer s.Close() defer s.Close()