Skip to content

Commit

Permalink
[skip-changelog] Relaxed test constraints (#2279)
Browse files Browse the repository at this point in the history
I see an increase in trainsient CI failures for this test. Let's try
to increase the timeout to see if solves the problem.
  • Loading branch information
cmaglie authored Aug 25, 2023
1 parent 4bf18d6 commit f5a9b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/integrationtest/daemon/daemon_concurrency_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f5a9b7c

Please sign in to comment.