From 5ab988f62544727eceecd384e5d808a29017142b Mon Sep 17 00:00:00 2001 From: Yahor Berdnikau Date: Wed, 9 Aug 2017 22:02:32 +0200 Subject: [PATCH] Update CI unit test job to generate full coverage report. --- .circleci/config.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cd9ccbcd..8644883c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,9 @@ jobs: command: ./gradlew assembleDebug - run: name: unit-tests - command: ./gradlew test + command: | + ./gradlew :subsonic-api:test :ultrasonic:testDebugUnitTest + ./gradlew jacocoFullReport - run: name: lint command: ./gradlew lint @@ -31,4 +33,7 @@ jobs: key: gradle-cache-{{ checksum "dependencies.gradle" }} - store_artifacts: path: ultrasonic/build/reports - destination: reports \ No newline at end of file + destination: reports + - store_artifacts: + path: build/reports/jacoco/jacocoFullReport/ +