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

Unified Diff: verification/try_job_on_rietveld.py

Issue 11414148: Hopefully last types fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue
Patch Set: Created 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: verification/try_job_on_rietveld.py
diff --git a/verification/try_job_on_rietveld.py b/verification/try_job_on_rietveld.py
index 84c29c35981a7bf5a1403231fe9867e1dce824d1..abbc558885447f9b1673c17693f270c1b8b8f08e 100644
--- a/verification/try_job_on_rietveld.py
+++ b/verification/try_job_on_rietveld.py
@@ -56,7 +56,7 @@ class RietveldTryJob(model.PersistentMixIn):
revision = (None, unicode, int)
requested_steps = list
# The timestamp when the build started.
- started = float
+ started = (float, int, None)
Peter Mayo 2012/11/23 20:53:42 None (the default) goes first, No?
M-A Ruel 2012/11/23 20:55:33 I prefer 0. as the default as I want to get rid of
steps_passed = list
steps_failed = list
clobber = bool
@@ -106,7 +106,7 @@ class RietveldTryJobs(base.IVerifierStatus):
# by Rietveld, so we don't know if the diff is 100% good.
irrelevant = list
# When NOTRY=true is specified.
- skipped = bool
+ skipped = (bool, None)
# Mapping from builders to list of tests.
builders_and_tests = dict
# Mapping from triggered builders to their parent. Do not change this
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698