Skip to content

Commit

Permalink
Skip intermittent test on CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnelson committed Jan 13, 2018
1 parent e226aa4 commit 4c9e9ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/inputs/tail/tail_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ func TestTailFromBeginning(t *testing.T) {
}

func TestTailFromEnd(t *testing.T) {
if os.Getenv("CIRCLE_PROJECT_REPONAME") != "" {
t.Skip("Skipping CI testing due to race conditions")
}

tmpfile, err := ioutil.TempFile("", "")
require.NoError(t, err)
defer os.Remove(tmpfile.Name())
Expand Down

0 comments on commit 4c9e9ac

Please sign in to comment.