Skip to content

Commit

Permalink
Skip test that is falky on macos
Browse files Browse the repository at this point in the history
Seems reliable on linux, but recent PRs have had failures on macos runners.
  • Loading branch information
dnephin committed Sep 5, 2024
1 parent 2b25e66 commit 4695585
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 4695585

Please sign in to comment.