Skip to content

Commit d4af516

Browse files
committed
test: add verbose flag to e2e tests in ci workflow
* added -v flag to go_test_flags to enable verbose output for e2e tests * this change will provide more detailed test logs, making it easier to diagnose issues in the ci pipeline
1 parent d81d616 commit d4af516

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/gh-workflow-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ run_e2e_tests() {
8888
mapfile -t tests < <(get_tests "${target}")
8989
echo "About to run ${#tests[@]} tests: ${tests[*]}"
9090
# shellcheck disable=SC2001
91-
make test-e2e GO_TEST_FLAGS="-run \"$(echo "${tests[*]}" | sed 's/ /|/g')\""
91+
make test-e2e GO_TEST_FLAGS="-v -run \"$(echo "${tests[*]}" | sed 's/ /|/g')\""
9292
}
9393

9494
output_logs() {

0 commit comments

Comments
 (0)