Skip to content

Commit

Permalink
Bug 1781237 - Skip chrome tests on Pixel2. r=perftest-reviewers,Alexa…
Browse files Browse the repository at this point in the history
…ndruIonescu

What we are doing:
- Disabling chrome-m tests to run on Pixel2 devices

Why:
- Recent bitbar cleanup script update is causing permafails on chrome

Differential Revision: https://phabricator.services.mozilla.com/D154274
  • Loading branch information
Andrej1198 committed Aug 15, 2022
1 parent a39d65d commit d2be9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taskcluster/gecko_taskgraph/target_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -794,8 +794,8 @@ def filter(task):
return False
# Android selection
elif accept_raptor_android_build(platform):
# Bug 1780817 - a51 is failing to install chrome
if "chrome-m" in try_name and "-a51" in platform:
# Bug 1780817 - a51 and p2 are failing to install chrome
if "chrome-m" in try_name and ("-a51" in platform or "-p2" in platform):
return False
# Ignore all fennec tests here, we run those weekly
if "fennec" in try_name:
Expand Down

0 comments on commit d2be9c1

Please sign in to comment.