Skip to content

Commit

Permalink
[Backport 7.60.x] [trace] skip TestOnUpdateAPIKeyCallback on macos (#…
Browse files Browse the repository at this point in the history
…30771)

Co-authored-by: pducolin <45568537+pducolin@users.noreply.github.com>
  • Loading branch information
agent-platform-auto-pr[bot] and pducolin authored Nov 6, 2024
1 parent 07e7e44 commit 0bf64ee
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions comp/trace/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"path/filepath"
"reflect"
"regexp"
"runtime"
"strings"
"testing"
"text/template"
Expand Down Expand Up @@ -2218,6 +2219,10 @@ func TestDisableReceiverConfig(t *testing.T) {
}

func TestOnUpdateAPIKeyCallback(t *testing.T) {
// APMSP-1494
if runtime.GOOS == "darwin" {
t.Skip("skipping flaky test on darwin")
}
var n int
callback := func(_, _ string) {
n++
Expand Down

0 comments on commit 0bf64ee

Please sign in to comment.