Commit a9214b7c authored by Steven Allen's avatar Steven Allen

test: skip TestProvidesMany when the race detector is enabled

parent 6c70c2f2
......@@ -893,6 +893,9 @@ func TestPeriodicRefresh(t *testing.T) {
}
func TestProvidesMany(t *testing.T) {
if detectrace.WithRace() {
t.Skip("skipping due to race detector max goroutines")
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment