diff --git a/src/short/partizan/games/domineering.rs b/src/short/partizan/games/domineering.rs index 29213e6..e6cd6af 100644 --- a/src/short/partizan/games/domineering.rs +++ b/src/short/partizan/games/domineering.rs @@ -180,6 +180,7 @@ where } } +#[cfg(not(tarpaulin_include))] impl Svg for Domineering where G: Grid + FiniteGrid, diff --git a/src/short/partizan/games/fission.rs b/src/short/partizan/games/fission.rs index c41c0b2..164b97d 100644 --- a/src/short/partizan/games/fission.rs +++ b/src/short/partizan/games/fission.rs @@ -114,6 +114,7 @@ where } } +#[cfg(not(tarpaulin_include))] impl Svg for Fission where G: Grid + FiniteGrid, diff --git a/src/short/partizan/games/ski_jumps.rs b/src/short/partizan/games/ski_jumps.rs index 756eb8c..a9f802e 100644 --- a/src/short/partizan/games/ski_jumps.rs +++ b/src/short/partizan/games/ski_jumps.rs @@ -134,6 +134,7 @@ where } } +#[cfg(not(tarpaulin_include))] impl Svg for SkiJumps where G: Grid + FiniteGrid, diff --git a/src/short/partizan/games/toads_and_frogs.rs b/src/short/partizan/games/toads_and_frogs.rs index e0b9da8..b5d319e 100644 --- a/src/short/partizan/games/toads_and_frogs.rs +++ b/src/short/partizan/games/toads_and_frogs.rs @@ -69,6 +69,7 @@ impl Display for ToadsAndFrogs { } } +#[cfg(not(tarpaulin_include))] impl Svg for ToadsAndFrogs { fn to_svg(&self, buf: &mut W) -> fmt::Result where