diff --git a/.travis.yml b/.travis.yml index 4e0f8f67..52f76868 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,14 @@ language: go -go: - - 1.7 - - tip +go: + - 1.8.x + - master before_install: - go get -t -v ./... script: - - go test -race -coverprofile=coverage.txt -covermode=atomic + - ./test.sh install: - go get github.com/gorilla/websocket @@ -18,4 +18,4 @@ install: - go get github.com/gorilla/mux after_success: - - bash <(curl -s https://codecov.io/bash) \ No newline at end of file + - bash <(curl -s https://codecov.io/bash) diff --git a/common/common_test.go b/common/common_test.go index f762bd98..a18a696c 100644 --- a/common/common_test.go +++ b/common/common_test.go @@ -558,7 +558,6 @@ func TestExtractPort(t *testing.T) { } func TestOutputCSV(t *testing.T) { - t.Parallel() path := "../testdata/dump" data := [][]string{} rowOne := []string{"Appended", "to", "two", "dimensional", "array"}