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