Skip to content

Commit

Permalink
[trace] skip TestOnUpdateAPIKeyCallback on macos (#30763)
Browse files Browse the repository at this point in the history
  • Loading branch information
pducolin authored Nov 5, 2024
1 parent bf79e38 commit 3a22913
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 3a22913

Please sign in to comment.