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