We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b787dc6 commit 800928eCopy full SHA for 800928e
maintnotifications/e2e/scripts/run-e2e-tests.sh
@@ -134,15 +134,14 @@ export FAULT_INJECTION_API_URL="$FAULT_INJECTOR_URL"
134
export E2E_SCENARIO_TESTS="true"
135
136
# Build test command
137
-TEST_CMD="go test -json -tags=e2e -v"
+TEST_CMD="go test -json -tags=e2e"
138
139
if [[ -n "$TIMEOUT" ]]; then
140
TEST_CMD="$TEST_CMD -timeout=$TIMEOUT"
141
fi
142
143
-if [[ -n "$VERBOSE" ]]; then
144
- TEST_CMD="$TEST_CMD $VERBOSE"
145
-fi
+# Note: -v flag is not compatible with -json output format
+# The -json format already provides verbose test information
146
147
if [[ -n "$RUN_PATTERN" ]]; then
148
TEST_CMD="$TEST_CMD -run $RUN_PATTERN"
0 commit comments