From da271874c30bd869b970c85d6bb3b32f14152800 Mon Sep 17 00:00:00 2001 From: Andrew Bayer Date: Fri, 13 May 2022 13:20:03 -0400 Subject: [PATCH] Try decreasing parallelism of YAML tests Signed-off-by: Andrew Bayer --- test/e2e-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e-tests.sh b/test/e2e-tests.sh index b617f92a891..b26240e7f62 100755 --- a/test/e2e-tests.sh +++ b/test/e2e-tests.sh @@ -59,7 +59,7 @@ function run_e2e() { # and they cause a lot of noise in the logs, making it harder to debug integration # test failures. if [ "${RUN_YAML_TESTS}" == "true" ]; then - go_test_e2e -mod=readonly -tags=examples -timeout=20m ./test/ || failed=1 + go_test_e2e -parallel=4 -mod=readonly -tags=examples -timeout=20m ./test/ || failed=1 fi }