https://github.com/scikit-learn-contrib/metric-learn
Revision 9697b13d16ae8d58699346c5a582c46f935f079d authored by William de Vazelhes on 16 April 2021, 10:34:19 UTC, committed by William de Vazelhes on 16 April 2021, 10:34:19 UTC
1 parent 455fbe4
Raw File
Tip revision: 9697b13d16ae8d58699346c5a582c46f935f079d authored by William de Vazelhes on 16 April 2021, 10:34:19 UTC
fix flake8
Tip revision: 9697b13
.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