Activate Travis CI

This commit is contained in:
Fabian Reinartz 2017-04-09 10:18:19 +02:00
parent c73a397da2
commit 721df536eb
3 changed files with 15 additions and 2 deletions

13
.travis.yml Normal file
View File

@ -0,0 +1,13 @@
sudo: false
language: go
go:
- 1.8
go_import_path: github.com/prometheus/tsdb
script:
- go test ./...

View File

@ -5,7 +5,7 @@ import (
"crypto/rand"
"testing"
"github.com/fabxc/tsdb/labels"
"github.com/prometheus/tsdb/labels"
)
func BenchmarkMapClone(b *testing.B) {

View File

@ -3,7 +3,7 @@ package tsdbutil
import (
"math"
"github.com/fabxc/tsdb"
"github.com/prometheus/tsdb"
)
// BufferedSeriesIterator wraps an iterator with a look-back buffer.