Skip to content

Commit

Permalink
Temporarily skip flaky TestDebuggerAttachDotnet test (#425)
Browse files Browse the repository at this point in the history
We're still seeing this test fail on macOS and it looks like it may be
affecting Windows as well. Temporarily skip it for now.

Going to see if skipping also removes the flakes on Windows.

#403 tracks fixing the test for real / unskipping.

Fixes #419
  • Loading branch information
justinvp authored Dec 9, 2024
1 parent 06e4e8d commit fdb0b9c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions integration_tests/integration_dotnet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
"strconv"
"strings"
"sync"
Expand Down Expand Up @@ -627,6 +628,11 @@ func readUpdateEventLog(logfile string) ([]apitype.EngineEvent, error) {
func TestDebuggerAttachDotnet(t *testing.T) {
t.Parallel()

// TODO[pulumi/pulumi-dotnet#403]: Fix flaky test.
if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
t.Skip("Temporarily skipping flaky test on macOS and Windows - pulumi/pulumi-dotnet#403")
}

languagePluginPath, err := filepath.Abs("../pulumi-language-dotnet")
require.NoError(t, err)

Expand Down

0 comments on commit fdb0b9c

Please sign in to comment.