github.com/google/trillian-examples@v0.0.0-20240520080811-0d40d35cef0e/codecov.yml (about)

     1  # Customizations to codecov for trillian-examples repo. This will be merged into
     2  # the team / default codecov yaml file.
     3  #
     4  # Validate changes with:
     5  # curl --data-binary @codecov.yml https://codecov.io/validate
     6  
     7  # Exclude code that's for testing, demos or utilities that aren't really
     8  # part of production releases.
     9  ignore:
    10    - "**/mock_*.go"
    11    - "**/testonly"
    12    - "**/integration/**"
    13    - "docs"
    14    - "examples"
    15    - "integration"
    16    - "testonly"
    17  
    18  coverage:
    19    status:
    20      project:
    21        default:
    22          # Allow 1% coverage drop without complaining, to avoid being too noisy.
    23          threshold: 1%