Index: ios/build/bots/scripts/run.py |
diff --git a/ios/build/bots/scripts/run.py b/ios/build/bots/scripts/run.py |
index 01ac2e0a072887e023734fe76519cf1f034d257e..9b42ef5e84ee65797e1a9179f0b3dffc5efe37dd 100755 |
--- a/ios/build/bots/scripts/run.py |
+++ b/ios/build/bots/scripts/run.py |
@@ -71,6 +71,9 @@ def main(args, test_args): |
with open(os.path.join(args.out_dir, 'summary.json'), 'w') as f: |
json.dump(summary, f) |
+ if tr: |
+ with open(os.path.join(args.out_dir, 'full_results.json'), 'w') as f: |
+ json.dump(tr.test_results, f) |
if __name__ == '__main__': |