Skip to content

Commit

Permalink
Update main_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Drutu authored Jun 6, 2022
1 parent 542c441 commit 841e176
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/builder/internal/builder/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
package builder

import (
"runtime"
"testing"
"time"

Expand Down Expand Up @@ -42,6 +43,9 @@ func TestGenerateInvalidOutputPath(t *testing.T) {
}

func TestGenerateAndCompileDefault(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("skipping the test on Windows, see https://github.com/open-telemetry/opentelemetry-collector/issues/5403")
}
cfg := NewDefaultConfig()
cfg.Distribution.OutputPath = t.TempDir()

Expand Down

0 comments on commit 841e176

Please sign in to comment.