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

Unified Diff: tools/telemetry/telemetry/internal/backends/chrome/cros_unittest.py

Issue 1428133005: [Telemetry] Allows concatenating multiple Disabled & Enabled decorators (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Dave's comment Created 5 years, 1 month 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: tools/telemetry/telemetry/internal/backends/chrome/cros_unittest.py
diff --git a/tools/telemetry/telemetry/internal/backends/chrome/cros_unittest.py b/tools/telemetry/telemetry/internal/backends/chrome/cros_unittest.py
index 7529fa061edf0552c97c46ff19c1df9b63de5a94..607567f39f39d0fe9da3cddaab58297df488c2c2 100644
--- a/tools/telemetry/telemetry/internal/backends/chrome/cros_unittest.py
+++ b/tools/telemetry/telemetry/internal/backends/chrome/cros_unittest.py
@@ -65,7 +65,7 @@ class CrOSLoginTest(cros_test_case.CrOSTestCase):
pass
util.WaitFor(lambda: not self._IsCryptohomeMounted(), 20)
- @decorators.Disabled
+ @decorators.Disabled('all')
def testGaiaLogin(self):
"""Tests gaia login. Credentials are expected to be found in a
credentials.txt file, with a single line of format username:password."""
@@ -152,7 +152,7 @@ class CrOSScreenLockerTest(cros_test_case.CrOSTestCase):
util.WaitFor(lambda: not browser.oobe_exists, 10)
self.assertFalse(self._IsScreenLocked(browser))
- @decorators.Disabled
+ @decorators.Disabled('all')
def testScreenLock(self):
"""Tests autotestPrivate.screenLock"""
if self._is_guest:

Powered by Google App Engine
This is Rietveld 408576698