forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codecov.yml
27 lines (26 loc) · 956 Bytes
/
.codecov.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Disable commit statuses
coverage:
status:
project: no
patch: no
changes: no
ignore:
# Ignore code generated by protobuf, we do not need to test that.
- "*.pb.cc"
- "*.pb.h"
# Ignore third party code and dependencies too.
- "/third_party/**"
# The `tests` directory contains tests to reproduce bugs in gRPC, not
# interesting for code coverage analysis.
- "/tests/**"
# Ignore the bigtable/client/testing directory, because these are components
# to drive testing, their coverage is not interesting.
- "/google/cloud/bigtable/testing/**"
# Ignore the bigtable/tests/ directory, because these are integration tests,
# also used to drive testing and therefore their coverage is not interesting.
- "/google/cloud/bigtable/tests/**"
# Ignore the benchmarks, they are not important for the experience for our
# users.
- "/google/cloud/bigtable/benchmarks/**"
# Also ignore the unit tests.
- "**/*_test.cc$"