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 <mvedovati@suse.com>
This commit is contained in:
Marco Vedovati 2019-06-18 15:19:22 +02:00
parent 25d75e5b1c
commit cc5df055bc

View File

@ -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"