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 |