From 9ae20f2bcbdc3ccf96a9c86e29173f94fe8e447d Mon Sep 17 00:00:00 2001 From: Emma Malysz Date: Wed, 18 Dec 2019 08:40:35 -0800 Subject: [PATCH] For perf-frontend-issues#16: switch device_config parameter for Nimbledroid to be Android7 (#6985) * For perf-frontend-issues#16: specify device_config parameter to be 'android7' when running Nimbledroid tests. This will switch the tests from running Android5 to Android7, which is a better representation of our user's experience * Ensure we can test with both Android5 and Android7 --- automation/taskcluster/upload_apk_nimbledroid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/taskcluster/upload_apk_nimbledroid.py b/automation/taskcluster/upload_apk_nimbledroid.py index 374f92436..0b97da0de 100644 --- a/automation/taskcluster/upload_apk_nimbledroid.py +++ b/automation/taskcluster/upload_apk_nimbledroid.py @@ -17,7 +17,7 @@ url = "https://nimbledroid.com/api/v2/apks" def uploadApk(apk,key): headers = {"Accept":"*/*"} - payload = {'auto_scenarios':'false'} + payload = {'auto_scenarios':'false', 'device_config': 'android5,android7'} response = requests.post(url, auth=(key, ''), headers=headers, files=apk, data=payload) if response.status_code != 201: