From 117899e66b2afa17f830aca0ecfadd1fda25d50d Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 25 Aug 2023 11:00:03 +0200 Subject: [PATCH] Relaxed test constraints I see an increase in trainsient CI failures for this test. Let's try to increase the timeout to see if solves the problem. --- internal/integrationtest/daemon/daemon_concurrency_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/integrationtest/daemon/daemon_concurrency_test.go b/internal/integrationtest/daemon/daemon_concurrency_test.go index acde5b97341..b7df90e3638 100644 --- a/internal/integrationtest/daemon/daemon_concurrency_test.go +++ b/internal/integrationtest/daemon/daemon_concurrency_test.go @@ -45,7 +45,7 @@ func TestArduinoCliDaemonCompileWithLotOfOutput(t *testing.T) { require.NoError(t, err) testCompile := func() { - ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) defer cancel() compile, err := grpcInst.Compile(ctx, "arduino:avr:uno", sketchPath.String(), "all") require.NoError(t, err)