https://github.com/geomstats/geomstats
Revision 7c9d8c1dd694476127eb1de5e73f3da8af9dae15 authored by johnharveymath on 09 March 2024, 09:15:55 UTC, committed by Luís F. Pereira on 18 March 2024, 07:42:34 UTC
1 parent 918d15d
Raw File
Tip revision: 7c9d8c1dd694476127eb1de5e73f3da8af9dae15 authored by johnharveymath on 09 March 2024, 09:15:55 UTC
Change to TypeError when `space.metric` does not exist
Tip revision: 7c9d8c1
.codecov.yml
coverage:
  round: up
  precision: 2
  status:
    project:
      default:
        target: auto
        threshold: 1%
        flags:
          - unit
       # advanced
        branches:
          - main
        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: auto
        threshold: 1%
        flags:
          - unit
        # advanced
        branches:
          - main
        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"
  - "geomstats/test"
  - "geomstats/test_cases"
  - "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