From 5f1e5060e18abc7de488e39bdd97f5c0ab88ed83 Mon Sep 17 00:00:00 2001 From: Bob Clary Date: Fri, 5 Jul 2019 18:40:39 +0000 Subject: [PATCH] Bug 1516985 - Uninstall Firefox Android app prior to installation to prevent INSTALL_FAILED_UPDATE_INCOMPATIBLE errors, r=davehunt Differential Revision: https://phabricator.services.mozilla.com/D36936 --HG-- extra : moz-landing-system : lando --- testing/mozharness/mozharness/mozilla/testing/raptor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/mozharness/mozharness/mozilla/testing/raptor.py b/testing/mozharness/mozharness/mozilla/testing/raptor.py index 1d7926fac320..bebd83067168 100644 --- a/testing/mozharness/mozharness/mozilla/testing/raptor.py +++ b/testing/mozharness/mozharness/mozilla/testing/raptor.py @@ -506,6 +506,7 @@ class Raptor(TestingMixin, MercurialScript, CodeCoverageMixin, AndroidMixin): def install(self): if self.app in self.firefox_android_browsers: + self.device.uninstall_app(self.binary_path) self.install_apk(self.installer_path) else: super(Raptor, self).install()