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

Unified Diff: appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py

Issue 2027333002: [Findit] don't included skipped or unknown tests in swarming tasks into failed tests. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Make sure only collect swarming result for targeted tests. Created 4 years, 7 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
Index: appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
diff --git a/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py b/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
index 912dd2f9df6762bd27efaabdfef46cbafdee0b65..372f0447fd624acf2ede98843f22ab1ebac69ef9 100644
--- a/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
+++ b/appengine/findit/waterfall/swarming_tasks_to_try_job_pipeline.py
@@ -34,7 +34,7 @@ class SwarmingTasksToTryJobPipeline(BasePipeline):
task_id = yield TriggerSwarmingTaskPipeline(
master_name, builder_name, build_number, step_name, tests)
step_future = yield ProcessSwarmingTaskResultPipeline(
- master_name, builder_name, build_number, step_name, task_id)
+ master_name, builder_name, build_number, step_name, task_id, tests)
logging_str = (
'Swarming task was scheduled for build %s/%s/%s step %s') % (
master_name, builder_name, build_number, step_name)

Powered by Google App Engine
This is Rietveld 408576698