From cc5df055bcdf8950f04ece6b4772d980a322e727 Mon Sep 17 00:00:00 2001 From: Marco Vedovati Date: Tue, 18 Jun 2019 15:19:22 +0200 Subject: [PATCH] travis: do not set -x when running test Do not `set -x` when running tests with Travis: tests are alreadyu doing it, and with chronic logs are shown only if the commands executed fails. Signed-off-by: Marco Vedovati --- .ci/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/run.sh b/.ci/run.sh index ed87a4edfa..fb0b70e073 100755 --- a/.ci/run.sh +++ b/.ci/run.sh @@ -12,4 +12,4 @@ export GOPATH="${GOPATH:-/tmp/go}" script_dir="$(dirname $(readlink -f $0))" -sudo -E PATH="$PATH" bash -x "${script_dir}/../tests/test_images.sh" +sudo -E PATH="$PATH" bash "${script_dir}/../tests/test_images.sh"