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

Unified Diff: build/android/pylib/base/test_run.py

Issue 2933993002: Add local results details pages.
Patch Set: Add --local-output arg which enables local results detail pages. Created 3 years, 6 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: build/android/pylib/base/test_run.py
diff --git a/build/android/pylib/base/test_run.py b/build/android/pylib/base/test_run.py
index 9b16f890f69cb99b4cca62cbb7f7937c648fe294..eaf86ed8823a65fb6d01cb82f53cd700bd82a89e 100644
--- a/build/android/pylib/base/test_run.py
+++ b/build/android/pylib/base/test_run.py
@@ -14,9 +14,10 @@ class TestRun(object):
- local instrumentation tests
"""
- def __init__(self, env, test_instance):
+ def __init__(self, env, test_instance, test_output_saver):
self._env = env
self._test_instance = test_instance
+ self._test_output_saver = test_output_saver
jbudorick 2017/06/20 14:12:54 Can you explain why this is in the test run rather
mikecase (-- gone --) 2017/07/10 17:11:10 Well, I think test_runs are really the things savi
def TestPackage(self):
raise NotImplementedError

Powered by Google App Engine
This is Rietveld 408576698