Skip to content

Commit 1a933cb

Browse files
committed
Fixed flaky intergration test.
1 parent 1589119 commit 1a933cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/integrationtest/sketch/profiles_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ func TestSketchProfileDump(t *testing.T) {
5151
// Install the required core and libraries
5252
_, _, err = cli.Run("core", "install", "arduino:[email protected]")
5353
require.NoError(t, err)
54-
_, _, err = cli.Run("lib", "install", "Adafruit [email protected]")
54+
_, _, err = cli.Run("lib", "install", "Adafruit [email protected]", "--no-overwrite")
5555
require.NoError(t, err)
56-
_, _, err = cli.Run("lib", "install", "Adafruit GFX [email protected]")
56+
_, _, err = cli.Run("lib", "install", "Adafruit GFX [email protected]", "--no-overwrite")
5757
require.NoError(t, err)
58-
_, _, err = cli.Run("lib", "install", "Adafruit [email protected]")
58+
_, _, err = cli.Run("lib", "install", "Adafruit [email protected]", "--no-overwrite")
5959
require.NoError(t, err)
6060

6161
// Check if the profile dump:

0 commit comments

Comments
 (0)