aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristen Kozak <sebright@google.com>2018-02-05 12:25:52 -0800
committerKristen Kozak <sebright@google.com>2018-02-05 12:25:52 -0800
commit82fc5c136b8a8bedd0d6c35ab625103f68021a49 (patch)
tree288fd8f1fbab603c28fde491de8e3e69b18419bc
parent67b1f37cd91688cf42fe2ff1adc8a42ef32477d9 (diff)
downloadopencensus-java-82fc5c136b8a8bedd0d6c35ab625103f68021a49.tar.gz
Remove Coveralls code coverage (closes #791).
-rw-r--r--.travis.yml1
-rw-r--r--README.md3
-rw-r--r--all/build.gradle13
3 files changed, 0 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml
index d01e9477..f70cbcc8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -71,7 +71,6 @@ script:
after_success:
- if \[ "$TASK" == "BUILD" \] && \[ "$TRAVIS_JDK_VERSION" == "oraclejdk8" \] && \[ "$TRAVIS_OS_NAME" = linux \]; then
- ./gradlew :opencensus-all:coveralls --stacktrace ;
bash <(curl -s https://codecov.io/bash) ;
fi
diff --git a/README.md b/README.md
index af7195e8..8a360c81 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,6 @@
[![Javadocs][javadoc-image]][javadoc-url]
[![Build Status][travis-image]][travis-url]
[![Windows Build Status][appveyor-image]][appveyor-url]
-[![Coverage Status][coverage-image]][coverage-url]
OpenCensus is a toolkit for collecting application performance and behavior data. It currently
@@ -126,8 +125,6 @@ see this [link](https://github.com/census-instrumentation/opencensus-java/tree/m
[javadoc-url]: https://www.javadoc.io/doc/io.opencensus/opencensus-api
[maven-image]: https://maven-badges.herokuapp.com/maven-central/io.opencensus/opencensus-api/badge.svg
[maven-url]: https://maven-badges.herokuapp.com/maven-central/io.opencensus/opencensus-api
-[coverage-image]: https://coveralls.io/repos/census-instrumentation/opencensus-java/badge.svg?branch=master&service=github
-[coverage-url]: https://coveralls.io/github/census-instrumentation/opencensus-java?branch=master
[gitter-image]: https://badges.gitter.im/census-instrumentation/lobby.svg
[gitter-url]: https://gitter.im/census-instrumentation/lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
[TraceExporterLogging]: https://github.com/census-instrumentation/opencensus-java/tree/master/exporters/trace/logging#quickstart
diff --git a/all/build.gradle b/all/build.gradle
index 6b4dadc5..7ddfe177 100644
--- a/all/build.gradle
+++ b/all/build.gradle
@@ -1,14 +1,9 @@
-apply plugin: 'com.github.kt3k.coveralls'
-
description = "OpenCensus All"
buildscript {
repositories {
mavenCentral()
}
- dependencies {
- classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
- }
}
def subprojects = [
@@ -92,11 +87,3 @@ jacocoTestReport {
fileTree(dir: it)
})
}
-
-coveralls {
- sourceDirs = subprojects.sourceSets.main.allSource.srcDirs.flatten()
-}
-
-tasks.coveralls {
- dependsOn(jacocoTestReport)
-}