You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go test -timeout 90m -v ./e2e/common/... -tags=integration -parallel=$(TEST_COMMON_PARALLEL_COUNT)$(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)|| FAILED=1;\
265
+
go test -timeout 90m -v ./e2e/common/... -tags=integration -parallel=$(TEST_COMMON_PARALLEL_COUNT)$(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
265
266
exit$${FAILED}
266
267
267
268
#
268
269
# Smoke tests are a subset of common tests used to quickly verify the operator
go test -timeout 10m -v ./e2e/common/main_test.go -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)|| FAILED=1;\
273
-
go test -timeout 30m -v ./e2e/common/languages -tags=integration -parallel=$(TEST_COMMON_PARALLEL_COUNT)$(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)|| FAILED=1;\
go test -timeout 10m -count=1 -v ./e2e/common/main_test.go -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
274
+
if [ $$FAILED -lt$(TEST_SKIP_AFTER_FAILURE_COUNT) ];then \
275
+
go test -timeout 30m -count=1 -v ./e2e/common/languages -tags=integration -parallel=$(TEST_COMMON_PARALLEL_COUNT)$(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
276
+
fi;\
277
+
if [ $$FAILED -lt$(TEST_SKIP_AFTER_FAILURE_COUNT) ];then \
0 commit comments