https://github.com/scikit-learn-contrib/metric-learn
Raw File
Tip revision: b3044a837bd8b32c7a9c7189970a48046d48a11e authored by CJ Carey on 29 September 2023, 00:13:39 UTC
Bump version to 0.7.0
Tip revision: b3044a8
.codecov.yml
ignore:
  - "test"

# taken from scikit-learn:
# https://github.com/scikit-learn/scikit-learn/blob/a7e17117bb15eb3f51ebccc1bd53e42fcb4e6cd8/.codecov.yml
comment: false

coverage:
  status:
    project:
      default:
        # Commits pushed to master should not make the overall
        # project coverage decrease by more than 1%:
        target: auto
        threshold: 1%
    patch:
      default:
        # Be tolerant on slight code coverage diff on PRs to limit
        # noisy red coverage status on github PRs.
        # Note The coverage stats are still uploaded
        # to codecov so that PR reviewers can see uncovered lines
        # in the github diff if they install the codecov browser
        # extension:
        # https://github.com/codecov/browser-extension
        target: auto
        threshold: 1%

back to top