Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Unified Diff: telemetry/telemetry/core/platform_unittest.py

Issue 2236493003: [catapult android trybot] Make Telemetry tests run on Android (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Add stack traces and more logging Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: telemetry/telemetry/core/platform_unittest.py
diff --git a/telemetry/telemetry/core/platform_unittest.py b/telemetry/telemetry/core/platform_unittest.py
index 5a838d2f9b171b178bb22ee1266fe334108ba7c5..cd202dacfcbc753a7473fded7cad4b854649296f 100644
--- a/telemetry/telemetry/core/platform_unittest.py
+++ b/telemetry/telemetry/core/platform_unittest.py
@@ -13,14 +13,18 @@ from telemetry.testing import tab_test_case
class PlatformScreenshotTest(tab_test_case.TabTestCase):
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testScreenshotSupported(self):
if self._platform.GetOSName() == 'android':
self.assertTrue(self._platform.CanTakeScreenshot())
# Run this test in serial to avoid multiple browsers pop up on the screen.
+ # https://github.com/catapult-project/catapult/issues/3099 (Android)
+ # crbug.com/563656 (Linux)
+ # crbug.com/660587 (Mac)
@decorators.Isolated
- @decorators.Disabled('linux') # crbug.com/563656
- @decorators.Disabled('mac') # crbug.com/660587
+ @decorators.Disabled('android', 'linux', 'mac')
def testScreenshot(self):
if not self._platform.CanTakeScreenshot():
self.skipTest('Platform does not support screenshots, skipping test.')
« no previous file with comments | « telemetry/telemetry/core/memory_cache_http_server_unittest.py ('k') | telemetry/telemetry/core/tracing_controller_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698