-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.codecov.yml
More file actions
46 lines (44 loc) · 1.12 KB
/
Copy path.codecov.yml
File metadata and controls
46 lines (44 loc) · 1.12 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
coverage:
status:
project:
default:
# Target coverage percentage
target: 70%
# Allow coverage to drop by up to 1% and still pass
threshold: 1%
# Use auto base to compare against the appropriate base
base: auto
# Only show coverage status on changes
if_not_found: success
if_ci_failed: error
informational: false
only_pulls: false
patch:
default:
# Target coverage for changed lines
target: 40%
# Allow patch coverage to drop by up to 5% and still pass
threshold: 5%
base: auto
if_not_found: success
if_ci_failed: error
informational: false
only_pulls: false
# Comment configuration
comment:
layout: "reach,diff,flags,files,footer"
behavior: default
require_changes: false
require_base: false
require_head: true
# Ignore certain files/patterns from coverage
ignore:
- "**/__pycache__"
- "**/tests/**"
- "**/test_*.py"
- "**/*_test.py"
- "**/conftest.py"
- "setup.py"
- "**/examples/**"
- "**/agent_history/**"
- "**/simplebroker/**"