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

Unified Diff: tools/bisect-manual-test.py

Issue 1582793006: [Telemetry] Update all clients to use chromium_config.GetTelemetryDir() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: tools/bisect-manual-test.py
diff --git a/tools/bisect-manual-test.py b/tools/bisect-manual-test.py
index f07cc7b80931b7b810fe245bbc57ee2847e2d356..f8d95ed4caf4c154a2fe1e63b719e168db91facc 100755
--- a/tools/bisect-manual-test.py
+++ b/tools/bisect-manual-test.py
@@ -11,7 +11,10 @@ Typically used as by the run-bisect-manual-test.py script.
import os
import sys
-sys.path.append(os.path.join(os.path.dirname(__file__), 'telemetry'))
+sys.path.insert(1, 'perf')
aiolos (Not reviewing) 2016/01/15 00:33:04 Is there a reason you aren't using the full path h
eakuefner 2016/01/19 17:21:18 Done. I've also switched back to append here becau
+from chrome_telemetry_build import chromium_config
+sys.path.insert(1, chromium_config.GetTelemetryDir())
+
from telemetry.internal.browser import browser_finder
from telemetry.internal.browser import browser_options

Powered by Google App Engine
This is Rietveld 408576698