mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 21:54:10 -08:00
Merge pull request #12101 from bboreham/disable-slow-promql-tests
promql: disable some slow cases in TestConcurrentRangeQueries
This commit is contained in:
commit
d21229b27a
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue