https://github.com/geomstats/geomstats
Raw File
Tip revision: cb4e2e02e08d8f76dde2b633552f36a37fbca19a authored by L. F. Pereira on 28 June 2023, 08:05:51 UTC
Merge branch 'master' into stable
Tip revision: cb4e2e0
.codecov.yml
coverage:
  round: up
  precision: 2
  status:
    project:
      default:
        target: 90%
        threshold: 2%
        base: auto
        flags:
          - unit
       # advanced
        branches:
          - master
        if_not_found: success
        if_ci_failed: error
        informational: False
        only_pulls: false

      numpy:
        flags:
          - numpy
      autograd:
        flags:
          - autograd
      pytorch:
        flags:
          - pytorch
    patch:
      default:
        # basic
        target: 90%
        threshold: 2%
        base: auto
        flags:
          - unit
        # advanced
        branches:
          - master
        if_no_uploads: error
        if_not_found: success
        if_ci_failed: error
        only_pulls: false

      numpy:
        flags:
          - numpy
      autograd:
        flags:
          - autograd
      pytorch:
        flags:
          - pytorch


# Files to ignore
ignore:
  - "geomstats/datasets/data"
  - "examples/data"
  - "examples/imgs"

flags:
  autograd:
    ignore:
      - geomstats/_backend/numpy
      - geomstats/_backend/pytorch
      - geomstats/_backend/tensorflow

  numpy:
    ignore:
      - geomstats/_backend/autograd
      - geomstats/_backend/pytorch
      - geomstats/_backend/tensorflow

  pytorch:
    ignore:
      - geomstats/_backend/autograd
      - geomstats/_backend/numpy
      - geomstats/_backend/tensorflow
back to top