diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index f4b15e7..7abc716 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -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 \{" diff --git a/src/service/test/media.rs b/src/service/test/media.rs index 86e5833..66a922c 100644 --- a/src/service/test/media.rs +++ b/src/service/test/media.rs @@ -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); }