diff --git a/promql/promql_test.go b/promql/promql_test.go index 1e6535141..68bfa1d95 100644 --- a/promql/promql_test.go +++ b/promql/promql_test.go @@ -73,6 +73,9 @@ func TestConcurrentRangeQueries(t *testing.T) { if strings.Contains(c.expr, "count_values") && c.steps > 10 { continue // This test is too big to run with -race. } + if strings.Contains(c.expr, "[1d]") && c.steps > 100 { + continue // This test is too slow. + } <-sem g.Go(func() error { defer func() {