summaryrefslogtreecommitdiff
path: root/scripts/lib/resulttool/report.py
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-04-18 21:57:17 -0500
committerArmin Kuster <akuster808@gmail.com>2019-05-17 21:53:50 -0700
commit3e48404afe27c93fa6ffbd8d66bc52dcd6216005 (patch)
treee696798c646b594f4f39bd6686de5670ba2e9043 /scripts/lib/resulttool/report.py
parent3dae8d5a02c29523dc640bee31a362f46ffde6ca (diff)
downloadopenembedded-core-3e48404afe27c93fa6ffbd8d66bc52dcd6216005.tar.gz
openembedded-core-3e48404afe27c93fa6ffbd8d66bc52dcd6216005.tar.bz2
openembedded-core-3e48404afe27c93fa6ffbd8d66bc52dcd6216005.zip
resulttool: Load results from URL
Adds support for resulttool to load JSON files directly from a http:// or https:// URL 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>
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):
group='analysis')
parser_build.set_defaults(func=report)
parser_build.add_argument('source_dir',
- help='source file/directory that contain the test result files to summarise')
+ help='source file/directory/URL that contain the test result files to summarise')
parser_build.add_argument('--branch', '-B', default='master', help="Branch to find commit in")
parser_build.add_argument('--commit', help="Revision to report")
parser_build.add_argument('-t', '--tag', default='',