From 66f1467b2318600bbb69bf79d7cfcc47bba68a32 Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Sat, 4 May 2019 16:40:05 +0200 Subject: [PATCH] Added coveralls. --- .travis.yml | 2 +- README.md | 2 +- build.gradle | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 39d6c9f..eedc000 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,4 +8,4 @@ before_script: - chmod +x gradle/wrapper/gradle-wrapper.jar script: - - ./gradlew clean test \ No newline at end of file + - ./gradlew clean test jacocoTestReport coveralls \ No newline at end of file diff --git a/README.md b/README.md index 20c7c24..b72b8fa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Cajon - Concise AssertJ Optimizing Nitpicker [![Build Status](https://travis-ci.org/chrisly42/cajon-plugin.svg?branch=master)](https://travis-ci.org/chrisly42/cajon-plugin) +# Cajon - Concise AssertJ Optimizing Nitpicker [![Build Status](https://travis-ci.org/chrisly42/cajon-plugin.svg?branch=master)](https://travis-ci.org/chrisly42/cajon-plugin) [![Coverage Status](https://coveralls.io/repos/github/chrisly42/cajon-plugin/badge.svg?branch=master)](https://coveralls.io/github/chrisly42/cajon-plugin?branch=master) Cajon is an IntelliJ IDEA Plugin for shortening and optimizing [AssertJ](https://assertj.github.io/doc/) assertions. diff --git a/build.gradle b/build.gradle index ddf12f1..34c7cde 100644 --- a/build.gradle +++ b/build.gradle @@ -3,6 +3,7 @@ plugins { id 'org.jetbrains.intellij' version '0.4.8' id 'org.jetbrains.kotlin.jvm' version '1.3.31' id 'jacoco' + id 'com.github.kt3k.coveralls' version '2.8.2' } group 'de.platon42' @@ -76,9 +77,8 @@ jacoco { jacocoTestReport { reports { - xml.enabled false + xml.enabled true csv.enabled false - html.destination file("${buildDir}/jacocoHtml") } }