Files
rust-vmm-ci/coverage_config_aarch64.json.sample
Stefano Garzarella 4c55aa732b Update exclude_path description and examples
Now that we use cargo-llvm-cov, `exclude_path` should be a regular
expression, since we are using `--ignore-filename-regex` option:

   --ignore-filename-regex <PATTERN>
       Skip source code files with file paths that match the given
       regular expression

To prevent users from separating multiple files with commas,
let's update the `exclude_path` description in the README and in
the examples.

Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
2023-10-20 16:06:54 +00:00

6 lines
148 B
Plaintext

{
"coverage_score": 90,
"exclude_path": "my_autogenerated_file\\.rs|path/to/my_folder",
"crate_features": "my_dummy_feature,dummy_feature2"
}