Skip to content

Commit 800928e

Browse files
fix -v
1 parent b787dc6 commit 800928e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

maintnotifications/e2e/scripts/run-e2e-tests.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,14 @@ export FAULT_INJECTION_API_URL="$FAULT_INJECTOR_URL"
134134
export E2E_SCENARIO_TESTS="true"
135135

136136
# Build test command
137-
TEST_CMD="go test -json -tags=e2e -v"
137+
TEST_CMD="go test -json -tags=e2e"
138138

139139
if [[ -n "$TIMEOUT" ]]; then
140140
TEST_CMD="$TEST_CMD -timeout=$TIMEOUT"
141141
fi
142142

143-
if [[ -n "$VERBOSE" ]]; then
144-
TEST_CMD="$TEST_CMD $VERBOSE"
145-
fi
143+
# Note: -v flag is not compatible with -json output format
144+
# The -json format already provides verbose test information
146145

147146
if [[ -n "$RUN_PATTERN" ]]; then
148147
TEST_CMD="$TEST_CMD -run $RUN_PATTERN"

0 commit comments

Comments
 (0)