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;\
276
+
go test -timeout 90m -v ./e2e/common/... -tags=integration -parallel=$(TEST_COMMON_PARALLEL_COUNT)$(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
276
277
exit$${FAILED}
277
278
278
279
#
279
280
# 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;\
284
-
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++));\
285
+
if [ $$FAILED -lt$(TEST_SKIP_AFTER_FAILURE_COUNT) ];then \
286
+
go test -timeout 30m -count=1 -v ./e2e/common/languages -tags=integration -parallel=$(TEST_COMMON_PARALLEL_COUNT)$(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
287
+
fi;\
288
+
if [ $$FAILED -lt$(TEST_SKIP_AFTER_FAILURE_COUNT) ];then \
0 commit comments