[go: up one dir, main page]

File: codecov.yml

package info (click to toggle)
trillian 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,280 kB
  • sloc: sh: 1,087; javascript: 474; sql: 164; makefile: 37
file content (22 lines) | stat: -rw-r--r-- 561 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Customizations to codecov for Trillian repo. This will be merged into
# the team / default codecov yaml file.
#
# Validate changes with:
# curl --data-binary @codecov.yml https://codecov.io/validate

# Exclude code that's for testing, demos or utilities that aren't really
# part of production releases.
ignore:
  - "**/mock_*.go"
  - "**/testonly"
  - "docs"
  - "examples"
  - "integration"
  - "testonly"

coverage:
  status:
    project:
      default:
        # Allow 1% coverage drop without complaining, to avoid being too noisy.
        threshold: 1%