diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-05-31 11:34:52 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-05-31 11:34:52 +0200 |
commit | 48bffb855a80d5766d533fef01b05c82386c2bd8 (patch) | |
tree | 9f8f7ce5c9c3ca7f4c3654e523a98574c95c51c9 /common | |
parent | ecc62413b8ee33ecf886b2f4161b486c47db38de (diff) |
Disable color output in pytestsandbox/jsmoeller/nocolor
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: Iff38a79b72952416792c4c66d1e482736d308544
Diffstat (limited to 'common')
-rwxr-xr-x | common/scripts/agl-extend-test.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/scripts/agl-extend-test.sh b/common/scripts/agl-extend-test.sh index 51dfcb1..89bde0e 100755 --- a/common/scripts/agl-extend-test.sh +++ b/common/scripts/agl-extend-test.sh @@ -1,15 +1,18 @@ #!/bin/bash +export NO_COLOR=1 +export TERM=dumb pre_check=`which agl-test` if [ -n "$pre_check" ] ; then - agl-test echo "agl-extend-test is present" else echo "agl-test is not installed, abort this test" exit 127 fi +agl-test + if [ -x ./artiproxy-upload.sh ] ; then LOG_DIR='/var/run/agl-test/logs/log-to-report' |