From f5ed7338c5aa9801c13c63e3f902e005503f43c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Z=C3=BCnd?= Date: Fri, 5 Mar 2021 11:46:40 +0100 Subject: [PATCH] Revert "Update runtime CPU budget" CQ doesn't like the reduced budget. This reverts commit 153609a6e363fe039bbb49d76cb8b4506730b347. --- benchmarks/runtime.bench.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/runtime.bench.js b/benchmarks/runtime.bench.js index d883c4c..7560444 100644 --- a/benchmarks/runtime.bench.js +++ b/benchmarks/runtime.bench.js @@ -85,7 +85,7 @@ function lintManyFilesWithAllRecommendedRules({ numberOfFiles }) { describe('runtime', () => { it('should not take longer as the defined budget to lint many files with the recommended config', () => { - const budget = 60000000 / cpuSpeed; + const budget = 80000000 / cpuSpeed; const { medianDuration } = runBenchmark(() => { lintManyFilesWithAllRecommendedRules({ numberOfFiles: 350 });