From c8b5128568a5652426441b1ca02d4b738c2aedf7 Mon Sep 17 00:00:00 2001 From: Malcolm Smith Date: Tue, 9 Sep 2025 15:34:33 +0100 Subject: [PATCH] Use `--slow-ci` on Android --- master/custom/factories.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/master/custom/factories.py b/master/custom/factories.py index 1d9053b9..6d62958f 100644 --- a/master/custom/factories.py +++ b/master/custom/factories.py @@ -1245,14 +1245,10 @@ def setup(self, **kwargs): Test( command=[ android_py, "test", "--managed", "maxVersion", "-v", "--", - "-uall", "--single-process", "--rerun", "-W", + "--slow-ci", "--single-process", "--no-randomize", ], timeout=step_timeout(self.test_timeout), ), - ShellCommand( - name="Clean", - command=[android_py, "clean"], - ), ]) @util.renderer