diff --git a/.codecov.yml b/.codecov.yml deleted file mode 100644 index c2d4db3ccc5f508ddbd5496c7960d02aaf142a62..0000000000000000000000000000000000000000 --- a/.codecov.yml +++ /dev/null @@ -1,31 +0,0 @@ -codecov: - notify: - require_ci_to_pass: no - -coverage: - precision: 2 - round: down - range: "70...100" - - status: - project: yes - patch: yes - changes: no - -parsers: - gcov: - branch_detection: - conditional: yes - loop: yes - method: no - macro: no - -comment: - layout: "reach, diff, flags, files, footer" - behavior: default - require_changes: no - -ignore: - - "docs" - - "fastlane" - - "**/*.md" diff --git a/.travis.yml b/.travis.yml index 29923a894c46fa06bdd638a8574b0bbf72cff330..5162ec5f0e9273d6ddbec66b50960322a65c5391 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,11 +41,6 @@ jobs: env: - desc="Build & test" if: tag != "-fdroid$" - - stage: test - script: bash travis/coverage.sh - env: - - desc="Codecov" - if: branch != l10n-crowdin AND tag != "-fdroid$" - stage: test script: bash travis/uploads.sh env: diff --git a/README.md b/README.md index 85334eb820e6ef76eaf7528a0a74171f5f8b0913..9c0019983902c08b15184080118449a8cdd741c0 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,6 @@ </a> <a href="https://crowdin.com/project/openhab-android"> <img src="https://d322cqt584bo4o.cloudfront.net/openhab-android/localized.svg"> - </a> - <a href="https://codecov.io/gh/openhab/openhab-android/branch/master"> - <img src="https://codecov.io/gh/openhab/openhab-android/branch/master/graph/badge.svg"> </a> <a href="https://www.bountysource.com/teams/openhab/issues?tracker_ids=968858"> <img src="https://www.bountysource.com/badge/tracker?tracker_id=968858"> diff --git a/travis/coverage.sh b/travis/coverage.sh deleted file mode 100644 index 7af6a9ae655f6967e24e3ec1335ee926e7797fad..0000000000000000000000000000000000000000 --- a/travis/coverage.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -set -e - -releaseFlavor="stable" -releaseFlavorCapital="Stable" -packageName="org.openhab.habdroid" - -if $(echo "$TRAVIS_TAG" | grep -q "beta") -then - echo "Beta" - releaseFlavor="beta" - releaseFlavorCapital="Beta" - packageName="org.openhab.habdroid.beta" -fi - -time ./gradlew :mobile:jacocoTest{Foss,Full}${releaseFlavorCapital}DebugUnitTestReport -time bash <(curl -s https://codecov.io/bash)