From cda4440bad72759959e6b8cd5a976b5f3952cb89 Mon Sep 17 00:00:00 2001 From: Christian Sadilek Date: Wed, 1 Sep 2021 12:14:02 -0400 Subject: [PATCH] [fenix] Do not run unit tests in parallel This is to investigate the intermittent mockk class generation/loading issues. Since we can not reproduce locally and the failures are intermittent they could be caused by us running unit tests in parallel. --- app/build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index a3663fc33..1af103d7a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -211,7 +211,6 @@ android { // reserve more memory and also create a new process after every 80 test classes. This // is a band-aid solution and eventually we should try to find and fix the leaks // instead. :) - maxParallelForks = 2 forkEvery = 80 maxHeapSize = "3072m" minHeapSize = "1024m"