diff --git a/.travis.yml b/.travis.yml index ae4a903..026d1c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,3 @@ language: go go: - - 1.2 -before_install: - - go get github.com/axw/gocov/gocov - - go get code.google.com/p/go.tools/cmd/cover - - go get github.com/mattn/goveralls -script: - - go test -covermode=count -coverprofile=profile.cov - - $HOME/gopath/bin/goveralls -repotoken z9bxGeTThOUlkUvGFuZLJ6PezhGyLXCGL -coverprofile=profile.cov -service=travis-ci + - 1.5 diff --git a/Readme.markdown b/Readme.markdown index 93771b9..f192e94 100644 --- a/Readme.markdown +++ b/Readme.markdown @@ -2,7 +2,6 @@ Google Safe Browsing API ======================== [![Build Status](https://travis-ci.org/rjohnsondev/go-safe-browsing-api.svg)](https://travis-ci.org/rjohnsondev/go-safe-browsing-api) -[![Coverage Status](https://coveralls.io/repos/rjohnsondev/go-safe-browsing-api/badge.png?branch=master)](https://coveralls.io/r/rjohnsondev/go-safe-browsing-api?branch=master) This library provides client functionality for version 3 of the Google safe browsing API as per: diff --git a/safebrowsing_test.go b/safebrowsing_test.go index e493312..32ef472 100644 --- a/safebrowsing_test.go +++ b/safebrowsing_test.go @@ -36,6 +36,7 @@ import ( "crypto/sha256" "io/ioutil" "net/http" + "sync" //"strings" )