Merge pull request #12101 from bboreham/disable-slow-promql-tests

promql: disable some slow cases in TestConcurrentRangeQueries
This commit is contained in:
Bryan Boreham 2023-03-09 11:08:12 +00:00 committed by GitHub
commit d21229b27a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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() {