mirror of
https://github.com/grafana/grafana.git
synced 2025-09-26 02:03:57 +08:00
Alerting: Stop running AM integration tests on CI (#100702)
This commit is contained in:
3
.github/pr-commands.json
vendored
3
.github/pr-commands.json
vendored
@ -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"
|
||||||
|
@ -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()
|
||||||
|
Reference in New Issue
Block a user