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

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

Issue 2344443005: [Findit] Factoring the gitiles (etc) stuff out into its own directory (Closed)
Patch Set: reordering imports Created 4 years, 2 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/identify_try_job_culprit_pipeline.py
diff --git a/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py b/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py
index 303211272cda6091271e46bd25d7d8ba5aab47f0..762326aca7b097b3ee8fa7f8fc8323164411262a 100644
--- a/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py
+++ b/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py
@@ -8,22 +8,22 @@ import logging
from google.appengine.ext import ndb
-from common.git_repository import GitRepository
from common.http_client_appengine import HttpClientAppengine as HttpClient
from common.pipeline_wrapper import BasePipeline
from common.waterfall import failure_type
+from lib.gitiles.gitiles_repository import GitilesRepository
from model import analysis_approach_type
from model import analysis_status
from model import result_status
from model.wf_analysis import WfAnalysis
-from model.wf_try_job import WfTryJob
from model.wf_try_job_data import WfTryJobData
+from model.wf_try_job import WfTryJob
+from waterfall import suspected_cl_util
from waterfall.send_notification_for_culprit_pipeline import (
SendNotificationForCulpritPipeline)
-from waterfall import suspected_cl_util
-GIT_REPO = GitRepository(
+GIT_REPO = GitilesRepository(
'https://chromium.googlesource.com/chromium/src.git', HttpClient())
« no previous file with comments | « appengine/findit/waterfall/flake/step_mapper.py ('k') | appengine/findit/waterfall/pull_changelog_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698