Skip to content

Commit

Permalink
Disable TestReadRotatingFiles on windows until issue #1348 is fixed (#…
Browse files Browse the repository at this point in the history
…1401)

Signed-off-by: Bogdan Drutu <[email protected]>
  • Loading branch information
bogdandrutu committed Oct 27, 2020
1 parent 3edfa3c commit e51351a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions receiver/stanzareceiver/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"log"
"os"
"path/filepath"
"runtime"
"testing"
"time"

Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit e51351a

Please sign in to comment.