https://github.com/scikit-learn-contrib/metric-learn
Raw File
Tip revision: 3e1af680085f52bb972a4866665eb25ead2ca9b6 authored by Aurélien Bellet on 01 July 2020, 09:50:48 UTC
fix dependencies doc and add pointer to v0.5.0 for earlier Python versions (#298)
Tip revision: 3e1af68
.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