Skip to content

Commit 026d3a6

Browse files
committed
See if we can ignore some items in codecov that we don't care about
testing.
1 parent 1367a89 commit 026d3a6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.codecov.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# - "path/to/folder" # ignore folders and all its contents
2+
# - "test_*.rb" # wildcards accepted
3+
# - "**/*.py" # glob accepted
4+
# - "[a-z]+/test_.*" # regexp accepted
5+
6+
# ignore files that are build utils and not executed
7+
# code, or are deprecated.
8+
ignore:
9+
- "roundup/cgi/TAL/talgettext.py" # utility command
10+
- "roundup/cgi/apache.py" # mod_python is deprecated
11+
- "roundup/install_util.py" # another build utlity
12+
- "roundup/dist" # more build utils

0 commit comments

Comments
 (0)