forked from isaac-sim/IsaacSim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.coveragerc
More file actions
47 lines (45 loc) · 1.32 KB
/
Copy path.coveragerc
File metadata and controls
47 lines (45 loc) · 1.32 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
47
[run]
relative_files = true
source =
source/extensions
source/deprecated
source/python_packages
omit =
# Ignore temporary files and build artifacts
/tmp/*
*/tmp/*
*CustomAugmentationScriptEnteredByUser*
_build/packages/*/extscache/*
_build/packages/*/kit/*
*/site-packages/*
*/dist-packages/*
# Omit deprecated extensions that don't exist in current source
_build/packages/*/extsDeprecated/omni.isaac.*
_build/packages/*/extsDeprecated/omni.kit.*
_build/packages/*/extsDeprecated/omni.replicator.*
[report]
# Skip files that don't exist in the source tree
skip_covered = false
skip_empty = true
show_missing = true
# Show coverage percentage in output for GitLab parsing
precision = 2
# Ignore files that can't be found (suppresses "No source for code" warnings)
ignore_errors = true
# Also omit at report level to suppress warnings
omit =
/tmp/*
*/tmp/*
*CustomAugmentationScriptEnteredByUser*
_build/packages/*/extscache/*
_build/packages/*/kit/*
*/site-packages/*
*/dist-packages/*
# Omit deprecated extensions that don't exist in current source
_build/packages/*/extsDeprecated/omni.isaac.*
_build/packages/*/extsDeprecated/omni.kit.*
_build/packages/*/extsDeprecated/omni.replicator.*
[paths]
source =
# Local source paths
source/