Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Commit aa93d6e

Browse files
authored
travis: remove coveralls, only use codecov (#136)
1 parent 7916902 commit aa93d6e

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ install:
4141
git clone _old $TRAVIS_REPO_SLUG;
4242
cd $TRAVIS_REPO_SLUG;
4343
fi
44-
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
45-
go install github.com/mattn/goveralls;
46-
fi
4744

4845
script:
4946
- 'internal/runtests.sh'

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
[![Build Status](https://travis-ci.com/google/wire.svg?branch=master)][travis]
44
[![godoc](https://godoc.org/github.com/google/wire?status.svg)][godoc]
5-
[![Coverage Status](https://coveralls.io/repos/github/google/wire/badge.svg?branch=master)](https://coveralls.io/github/google/wire?branch=master)
5+
[![Coverage](https://codecov.io/gh/google/wire/branch/master/graph/badge.svg)](https://codecov.io/gh/google/wire)
6+
67

78
Wire is a code generation tool that automates connecting components using
89
[dependency injection][]. Dependencies between components are represented in

internal/runtests.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ fi
2424
result=0
2525

2626
# Run Go tests. Only do coverage for the Linux build
27-
# because it is slow, and Coveralls will only save the last one anyway.
27+
# because it is slow, and codecov will only save the last one anyway.
2828
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
2929
go test -race -coverpkg=./... -coverprofile=coverage.out ./... || result=1
3030
if [ -f coverage.out ]; then
31-
goveralls -coverprofile=coverage.out -service=travis-ci
3231
bash <(curl -s https://codecov.io/bash)
3332
fi
3433
# Ensure that the code has no extra dependencies (including transitive

0 commit comments

Comments
 (0)