|
return next( |
|
search_files( |
|
self.config.project_root, |
|
[], |
|
filename_include_regex=coverage_files_regex, |
|
filename_exclude_regex=None, |
|
), |
|
None, |
|
) |
The code in question means that --dir passed to the CLI will not be respected as the project_root always takes precedence. That is quite unfortunate.
prevent-cli/codecov-cli/codecov_cli/plugins/pycoverage.py
Lines 86 to 94 in 10f3e95
The code in question means that
--dirpassed to the CLI will not be respected as theproject_rootalways takes precedence. That is quite unfortunate.