Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion test/nexus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2404,7 +2404,9 @@ func (t *otelTracer) spanChildren(spans []sdktrace.ReadOnlySpan, parentID trace.
}

func TestNexusTracingInterceptor(t *testing.T) {
t.Skip("this test is flaky in CI and needs to be restructured")
if os.Getenv("WORKFLOW_CACHE_SIZE") == "0" {
t.Skip("TestNexusTracingInterceptor not supported with 0 workflow cache size")
}
cases := []struct {
name string
tracer func(t *testing.T) interceptortest.TestTracer
Expand Down
Loading