diff --git a/.travis.yml b/.travis.yml index a95d68e..5cfd5d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,6 @@ script: - diff -u <(echo -n) <(gofmt -d -s .) - diff -u <(echo -n) <(./internal/scripts/autogen_licences.sh .) - diff -u <(echo -n) <(golint ./...) -after_success: - - ./private/scripts/coverage.sh env: global: - CGO_ENABLED=0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 324a257..0fb97f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - the `tcell` unit test can now pass in headless mode (when TERM="") which happens under bazel. -- fixed path to the coverage script after the rename if directory "internal" to - "private". +- switching coveralls integration to Github application. ## [0.12.0] - 10-Apr-2020 diff --git a/private/scripts/coverage.sh b/private/scripts/coverage.sh deleted file mode 100755 index 8b65ed9..0000000 --- a/private/scripts/coverage.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -go get github.com/go-playground/overalls && go get github.com/mattn/goveralls - -overalls -project=github.com/mum4k/termdash -covermode=count -goveralls -coverprofile=overalls.coverprofile -service travis-ci