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

Unified Diff: verification/try_server.py

Issue 6049007: Create IVerifierStatus and add IVerifierStatus.ignored(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue
Patch Set: fix diff Created 9 years, 12 months 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
« pending_manager.py ('K') | « verification/base.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: verification/try_server.py
diff --git a/verification/try_server.py b/verification/try_server.py
index 60822f751cfa031439544c58898f05609f3f58dd..a5008b8165f3b729691dfee270e5c03e3d54ba8c 100644
--- a/verification/try_server.py
+++ b/verification/try_server.py
@@ -62,7 +62,7 @@ class TryJob(model.PersistentMixIn):
self.base_url, self.builder, self.build)
-class TryJobs(model.PersistentMixIn):
+class TryJobs(base.IVerifierStatus):
"""A set of try jobs that were sent for a specific patch."""
persistent = [
'try_jobs',
@@ -93,6 +93,9 @@ class TryJobs(model.PersistentMixIn):
return True
return False
+ def ignored(self):
+ return False
+
class TryRunner(base.Verifier):
"""Stateless communication with a try server.
« pending_manager.py ('K') | « verification/base.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698