Skip to content

Commit

Permalink
pipeline: skip TestMerging_mappings on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Apr 12, 2024
1 parent 3e74f52 commit e8f7b6d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/pipeline/merging_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
"io/fs"
"os"
"path/filepath"
"runtime"
"testing"
"time"

Expand Down Expand Up @@ -142,6 +143,10 @@ func TestMerging_fileAcceptor(t *testing.T) {
}

func TestMerging_mappings(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip()
}

dir := t.TempDir()

logger := log.NewTestLogger()
Expand Down

0 comments on commit e8f7b6d

Please sign in to comment.