From aedb4af3da038752c2ab99a48aaf03eb1e5c5980 Mon Sep 17 00:00:00 2001 From: Dan Field Date: Mon, 18 Oct 2021 23:47:10 -0700 Subject: [PATCH] Update firebase_testlab.py Use Pixel 5. Pixel 4 is becoming less available/deprecated on FTL. --- ci/firebase_testlab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/firebase_testlab.py b/ci/firebase_testlab.py index effd543819ecd..aa8408c391cf7 100755 --- a/ci/firebase_testlab.py +++ b/ci/firebase_testlab.py @@ -23,7 +23,7 @@ def RunFirebaseTest(apk, results_dir): # This type of test will give the application a handle to a file, and # we'll write the timeline JSON to that file. # See https://firebase.google.com/docs/test-lab/android/game-loop - # Pixel 4. As of this commit, this is a highly available device in FTL. + # Pixel 5. As of this commit, this is a highly available device in FTL. process = subprocess.Popen( [ 'gcloud', @@ -34,7 +34,7 @@ def RunFirebaseTest(apk, results_dir): '--timeout', '2m', '--results-bucket', bucket, '--results-dir', results_dir, - '--device', 'model=flame,version=29', + '--device', 'model=redfin,version=30', ], stdout=subprocess.PIPE, stderr=subprocess.STDOUT,