From f410a75c1a8856d0708a784ecf94d4ad14ca028d Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Mon, 9 Dec 2024 13:08:44 +0100 Subject: [PATCH] Increase integration test parallelism --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bc1c42cfa..fd70e7f27 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,6 @@ vendor: @go mod vendor integration: - gotestsum --format github-actions --rerun-fails --jsonfile output.json --packages "./internal/..." -- -run "TestAcc.*" -parallel 4 -timeout=2h + gotestsum --format github-actions --rerun-fails --jsonfile output.json --packages "./internal/..." -- -run "TestAcc.*" -p 2 -parallel 8 -timeout=2h .PHONY: fmt lint lintfix test testonly coverage build snapshot vendor integration