diff options
author | dpranke <dpranke@chromium.org> | 2014-11-03 20:00:04 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-04 04:00:21 +0000 |
commit | 3e7c2a6ee80e05fc6b8090bee850c40b8a2a3810 (patch) | |
tree | 06288483195ffb91484b1c393d87b89842e2bb35 /tools/telemetry/PRESUBMIT.py | |
parent | 017803df5ecc30b15e8ad13c320ebe1cf0918d77 (diff) | |
download | chromium_src-3e7c2a6ee80e05fc6b8090bee850c40b8a2a3810.zip chromium_src-3e7c2a6ee80e05fc6b8090bee850c40b8a2a3810.tar.gz chromium_src-3e7c2a6ee80e05fc6b8090bee850c40b8a2a3810.tar.bz2 |
Switch telemetry over to use typ to run the unit tests.
Using typ allows us to run the tests in parallel and share
the logic for parsing the results and uploading them to the
flakiness dashboard with other python test steps.
R=dtu@chromium.org, tonyg@chromium.org, nduca@chromium.org
BUG=402172, 388256
Review URL: https://codereview.chromium.org/659293003
Cr-Commit-Position: refs/heads/master@{#302570}
Diffstat (limited to 'tools/telemetry/PRESUBMIT.py')
-rw-r--r-- | tools/telemetry/PRESUBMIT.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/telemetry/PRESUBMIT.py b/tools/telemetry/PRESUBMIT.py index 52c8806..c424658 100644 --- a/tools/telemetry/PRESUBMIT.py +++ b/tools/telemetry/PRESUBMIT.py @@ -33,7 +33,9 @@ def _CommonChecks(input_api, output_api): return results def GetPathsToPrepend(input_api): - return [input_api.PresubmitLocalPath()] + return [input_api.PresubmitLocalPath(), + os.path.join(input_api.PresubmitLocalPath(), os.path.pardir, + os.path.pardir, 'third_party', 'typ')] def RunWithPrependedPath(prepended_path, fn, *args): old_path = sys.path |