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:avr@1.8.6")
5353
require.NoError(t, err)
54-
_, _, err = cli.Run("lib", "install", "Adafruit BusIO@1.17.1")
54+
_, _, err = cli.Run("lib", "install", "Adafruit BusIO@1.17.1", "--no-overwrite")
5555
require.NoError(t, err)
56-
_, _, err = cli.Run("lib", "install", "Adafruit GFX Library@1.12.1")
56+
_, _, err = cli.Run("lib", "install", "Adafruit GFX Library@1.12.1", "--no-overwrite")
5757
require.NoError(t, err)
58-
_, _, err = cli.Run("lib", "install", "Adafruit SSD1306@2.5.14")
58+
_, _, err = cli.Run("lib", "install", "Adafruit SSD1306@2.5.14", "--no-overwrite")
5959
require.NoError(t, err)
6060

6161
// Check if the profile dump:

0 commit comments

Comments
 (0)