Skip to content

Commit

Permalink
Merge pull request #433 from gotestyourself/skip-flaky-test-darwin
Browse files Browse the repository at this point in the history
Skip test that is falky on macos
  • Loading branch information
dnephin committed Sep 5, 2024
2 parents 2b25e66 + 4695585 commit cec01c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testjson/dotformat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
)

func TestScanTestOutput_WithDotsFormatter(t *testing.T) {
skip.If(t, runtime.GOOS == "windows")
skip.If(t, runtime.GOOS == "windows" || runtime.GOOS == "darwin")

out := new(bytes.Buffer)
dotfmt := &dotFormatter{
Expand Down

0 comments on commit cec01c6

Please sign in to comment.