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/ +