Tentative fix for test coverage setup

This commit is contained in:
Antoine Gersant 2025-01-31 19:14:01 -08:00
parent 5a1753218c
commit f8b30c4e3d
2 changed files with 1 additions and 2 deletions
.github/workflows
src/service/test

View file

@ -34,6 +34,7 @@ jobs:
--llvm
--branch
--ignore-not-existing
--binary-path ./target/debug
--excl-line "#\[derive\("
--excl-br-line "#\[derive\("
--excl-start "mod tests \{"

View file

@ -170,13 +170,11 @@ fn thumbnail_size_small() {
}
#[test]
#[cfg(not(tarpaulin))]
fn thumbnail_size_large() {
thumbnail_size(&test_name!(), Some(ThumbnailSize::Large), None, 1200);
}
#[test]
#[cfg(not(tarpaulin))]
fn thumbnail_size_native() {
thumbnail_size(&test_name!(), Some(ThumbnailSize::Native), None, 1423);
}