Tests should not be listed in test coverage report
timw4mail/rusty-numbers/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2020-03-05 21:53:33 -05:00
parent 193a66b19d
commit 34a1989925
3 changed files with 3 additions and 1 deletions

View File

@ -300,6 +300,7 @@ impl_from_smaller!((i8, u8), (i16, u16), (i32, u32), (i64, u64));
static BITS:usize = 64;
#[cfg(test)]
#[cfg_attr(tarpaulin, skip)]
mod tests {
use super::*;

View File

@ -272,6 +272,7 @@ impl_unsigned!(u8, u16, u32, u64, u128, usize);
impl_empty!(Signed, (i8, i16, i32, i64, i128, isize));
#[cfg(test)]
#[cfg_attr(tarpaulin, skip)]
mod tests {
use super::*;

View File

@ -314,8 +314,8 @@ impl<T: Unsigned> Neg for Frac<T> {
}
}
#[cfg_attr(tarpaulin, skip)]
#[cfg(test)]
#[cfg_attr(tarpaulin, skip)]
mod tests {
use super::*;