aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2020-10-02 12:17:23 +0200
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2020-10-02 12:18:24 +0200
commitc13d893cc61985d6b53fa0b71da296985df87bc4 (patch)
tree794796bbfe5f08984e346d44d0deb15de1767622
parent1f3fa5bd4d6f38edb416cbe95e20ef8a1973e14f (diff)
testplan2html: remove annoying output
The git checkout output is annoying and doesn't bring any valuable information. Shut it down. Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rwxr-xr-xplans/testplan2html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plans/testplan2html.py b/plans/testplan2html.py
index 527bf2b..f45affb 100755
--- a/plans/testplan2html.py
+++ b/plans/testplan2html.py
@@ -110,7 +110,7 @@ def test_exists(test, repositories, args):
return not test['missing']
test['missing'] = False
# open the file and render the test
- subprocess.call(['git', 'checkout', 'master'])
+ subprocess.call(['git', 'checkout', '-q', 'master'])
logger.debug("Current dir: {}".format(current_dir))
os.chdir(current_dir)
logger.debug("CWD: {}".format(os.getcwd()))