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

Unified Diff: tools/chrome_proxy/run_tests

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/chrome_proxy/run_tests
diff --git a/tools/chrome_proxy/run_tests b/tools/chrome_proxy/run_tests
index 6abd3fa5d90b9ed193e319e1f55f9ac9a7ecd008..05f181014c85a892a6803e90315a13047a0d750f 100755
--- a/tools/chrome_proxy/run_tests
+++ b/tools/chrome_proxy/run_tests
@@ -11,12 +11,11 @@ This script DOES NOT run benchmarks. run_benchmark does that.
import os
import sys
-sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'telemetry'))
+import chrome_proxy_config
+sys.path.insert(1, chrome_proxy_config.TELEMETRY_DIR)
from telemetry.testing import unittest_runner
-import chrome_proxy_config
-
if __name__ == '__main__':
sys.exit(unittest_runner.Run(chrome_proxy_config.Config(['integration_tests',

Powered by Google App Engine
This is Rietveld 408576698