Files
Benjamin Bouvier 70705f4e9d chore(ci): exclude some crate from codecov testing
There's been many segfaults happening in tests, while running the test
coverage for this specific crate. An issue has been opened on
cargo-tarpaulin's repository:

https://github.com/xd009642/tarpaulin/issues/1749

Until this is fixed or worked around, we'll disable coverage testing for
this specific crate.
2025-06-06 09:28:55 +02:00

29 lines
683 B
TOML

[default-config]
debug = false
verbose = false
exclude-files = [
"examples/*",
"testing/*",
"labs/*",
"**/tests/*",
]
workspace = true
# sqlite crypto store is not tested otherwise because it's only activated by
# matrix-sdk-crypto-ffi, which is excluded from testing below.
features = "crypto-store"
exclude = [
# bindings
"matrix-sdk-crypto-ffi",
"matrix-sdk-ffi",
# wasm only, can't get coverage
"matrix-sdk-indexeddb",
# testing
"matrix-sdk-test",
"matrix-sdk-test-macros",
# repo automation (ci, codegen)
"uniffi-bindgen",
"xtask",
# until it doesn't segfault anymore, this is excluded :(
"matrix-sdk-base",
]