Skip to content

Commit

Permalink
Use full coverage by default
Browse files Browse the repository at this point in the history
  • Loading branch information
vmordan committed Oct 20, 2023
1 parent abea256 commit 40cc16c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/components/coverage_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def __init__(self, launcher_component: Component = None, basic_config=None, inst
self.mode = self.component_config.get(TAG_COVERAGE_MODE, DEFAULT_COVERAGE_MODE)
self.percent_mode = self.component_config.get(TAG_COVERAGE_PERCENT_MODE,
COVERAGE_PERCENT_LOG)
self.src_cov_mode = self.component_config.get(TAG_FULL_COVERAGE_MODE, "src_only")
self.src_cov_mode = self.component_config.get(TAG_FULL_COVERAGE_MODE, "full")
self.internal_logger = logging.getLogger(name=COMPONENT_COVERAGE)
self.internal_logger.setLevel(self.logger.level)
self.default_source_file = default_source_file
Expand Down

0 comments on commit 40cc16c

Please sign in to comment.