Skip to content

Commit

Permalink
Skips the tombstone GC test in Travis for now.
Browse files Browse the repository at this point in the history
Related to #3670
  • Loading branch information
slackpad committed Nov 9, 2017
1 parent a4cfcac commit c57884f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions agent/consul/state/tombstone_gc_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package state

import (
"os"
"testing"
"time"
)
Expand All @@ -23,6 +24,10 @@ func TestTombstoneGC_invalid(t *testing.T) {
}

func TestTombstoneGC(t *testing.T) {
if os.Getenv("TRAVIS") == "true" {
t.Skip("GC test is flaky on travis-ci (see #3670)")
}

ttl := 20 * time.Millisecond
gran := 5 * time.Millisecond
gc, err := NewTombstoneGC(ttl, gran)
Expand Down

0 comments on commit c57884f

Please sign in to comment.