Skip to content
Snippets Groups Projects
Commit d0d27289 authored by Oleksandr Karpovich's avatar Oleksandr Karpovich Committed by Oleksandr Karpovich
Browse files

Fix `add1kItems` benchmark to avoid it getting swallowed on CI

Now it will repeat only 3 times instead of default (5).
parent 20fa5edd
No related branches found
No related tags found
No related merge requests found
......@@ -65,8 +65,8 @@ class BenchmarkTests {
return duration
}
@Test
fun add1kItems() = runBenchmark("add1000Items") {
@Test // add1kItems overrides default `repeat` value (was - 5, now - 3) to avoid getting swallowed on CI
fun add1kItems() = runBenchmark(name = "add1000Items", repeat = 3) {
addNItems(1000)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment