Skip to content

Commit

Permalink
[chore] skip flaky test on windows (#17575)
Browse files Browse the repository at this point in the history
See issue #17574

Signed-off-by: Alex Boten <aboten@lightstep.com>
  • Loading branch information
Alex Boten authored Jan 13, 2023
1 parent b254d29 commit e365f05
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ package octrace

import (
"context"
"runtime"
"testing"
"time"

Expand All @@ -40,6 +41,9 @@ import (
// test is to ensure exactness, but with the mentioned views registered, the
// output will be quite noisy.
func TestEnsureRecordedMetrics(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("skipping test on Windows, see https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/17574")
}
tt, err := obsreporttest.SetupTelemetry(component.NewID("opencensus"))
require.NoError(t, err)
defer func() {
Expand Down

0 comments on commit e365f05

Please sign in to comment.