summaryrefslogtreecommitdiffstats
path: root/scripts/lib/resulttool/report.py
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-04-18 21:57:17 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-12 09:13:38 +0100
commit2a81631d563015905915b8c6fff4729f74369896 (patch)
treeb12639e83325f6bf89953331f01319ae0da316b1 /scripts/lib/resulttool/report.py
parent1670d355cb84055375019af7997cb8c0184d3592 (diff)
downloadpoky-2a81631d563015905915b8c6fff4729f74369896.tar.gz
resulttool: Load results from URL
Adds support for resulttool to load JSON files directly from a http:// or https:// URL (From OE-Core rev: 8e2f0257e1e438b88e4298438d5bae5f7c3c0a7a) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/resulttool/report.py')
-rw-r--r--scripts/lib/resulttool/report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/resulttool/report.py b/scripts/lib/resulttool/report.py
index 90086209e3..8ae42728e4 100644
--- a/scripts/lib/resulttool/report.py
+++ b/scripts/lib/resulttool/report.py
@@ -143,7 +143,7 @@ def register_commands(subparsers):
143 group='analysis') 143 group='analysis')
144 parser_build.set_defaults(func=report) 144 parser_build.set_defaults(func=report)
145 parser_build.add_argument('source_dir', 145 parser_build.add_argument('source_dir',
146 help='source file/directory that contain the test result files to summarise') 146 help='source file/directory/URL that contain the test result files to summarise')
147 parser_build.add_argument('--branch', '-B', default='master', help="Branch to find commit in") 147 parser_build.add_argument('--branch', '-B', default='master', help="Branch to find commit in")
148 parser_build.add_argument('--commit', help="Revision to report") 148 parser_build.add_argument('--commit', help="Revision to report")
149 parser_build.add_argument('-t', '--tag', default='', 149 parser_build.add_argument('-t', '--tag', default='',