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++));\
287
+
go test -p=$(TEST_COMMON_PARALLEL_COUNT) -timeout 90m -v ./e2e/common/... -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
go test -timeout 10m -count=1 -v ./e2e/common/main_test.go -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
302
302
if [ $$FAILED -le$$TEST_SKIP_AFTER_FAILURE_COUNT ];then \
303
-
go test -timeout 30m -count=1 -v ./e2e/common/languages -tags=integration -parallel=$(TEST_COMMON_PARALLEL_COUNT)$(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
303
+
go test -p=$(TEST_COMMON_PARALLEL_COUNT) -timeout 30m -count=1 -v ./e2e/common/languages -tags=integration $(TEST_INTEGRATION_COMMON_LANG_RUN)$(GOTESTFMT)||((FAILED++));\
304
304
fi;\
305
305
if [ $$FAILED -le$$TEST_SKIP_AFTER_FAILURE_COUNT ];then \
306
-
go test -timeout 30m -count=1 -v \
306
+
go test -p=$(TEST_COMMON_PARALLEL_COUNT) -timeout 30m -count=1 -v \
0 commit comments