From 6472556d6fa48f7ce6bab7c0948ad80c789c7d75 Mon Sep 17 00:00:00 2001 From: Kevin Atkinson Date: Thu, 16 Nov 2017 19:44:02 -0500 Subject: [PATCH] Update Travis CI to use new test script and go 1.9.x --- .travis.yml | 12 ++++-------- codecov.yml | 3 +++ 2 files changed, 7 insertions(+), 8 deletions(-) create mode 100644 codecov.yml diff --git a/.travis.yml b/.travis.yml index 284e57a59..6fc0274f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,17 +5,13 @@ os: language: go go: - - 1.8 + - 1.9.x -install: true +install: + - make deps-protocol-muxing -before_install: - - make deps - - go get -u github.com/multiformats/go-multicodec - - go get -u github.com/libp2p/go-msgio -#- go vet ./... script: - - go test ./... -v + - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh) cache: directories: diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 000000000..5f88a9ea2 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,3 @@ +coverage: + range: "50...100" +comment: off