diff --git a/receiver/stanzareceiver/e2e_test.go b/receiver/stanzareceiver/e2e_test.go index 556cf91fc17f1..2286bc9e8c874 100644 --- a/receiver/stanzareceiver/e2e_test.go +++ b/receiver/stanzareceiver/e2e_test.go @@ -21,6 +21,7 @@ import ( "log" "os" "path/filepath" + "runtime" "testing" "time" @@ -108,6 +109,11 @@ func TestReadStaticFile(t *testing.T) { } func TestReadRotatingFiles(t *testing.T) { + // https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/1382 + if runtime.GOOS == "windows" { + t.Skip() + } + tests := []rotationTest{ { name: "CopyTruncateTimestamped",