Skip to content

Commit e8f7b6d

Browse files
committed
pipeline: skip TestMerging_mappings on windows
1 parent 3e74f52 commit e8f7b6d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

internal/pipeline/merging_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import (
2626
"io/fs"
2727
"os"
2828
"path/filepath"
29+
"runtime"
2930
"testing"
3031
"time"
3132

@@ -142,6 +143,10 @@ func TestMerging_fileAcceptor(t *testing.T) {
142143
}
143144

144145
func TestMerging_mappings(t *testing.T) {
146+
if runtime.GOOS == "windows" {
147+
t.Skip()
148+
}
149+
145150
dir := t.TempDir()
146151

147152
logger := log.NewTestLogger()

0 commit comments

Comments
 (0)