diff --git a/benches/large.rs b/benches/large.rs index 2305203..6c6986c 100644 --- a/benches/large.rs +++ b/benches/large.rs @@ -6,7 +6,7 @@ use std::path::PathBuf; use std::sync::Mutex; use hidefix::prelude::*; -use ndarray::{s, Dim, IxDyn}; +use ndarray::{s, IxDyn}; const URL: &'static str = "https://thredds.met.no/thredds/fileServer/fou-hi/norkyst800m-1h/NorKyst-800m_ZDEPTHS_his.an.2023081600.nc"; const VAR: &'static str = "u_eastward"; diff --git a/tests/read_norkyst.rs b/tests/read_norkyst.rs index 5ae3c5d..507bea3 100644 --- a/tests/read_norkyst.rs +++ b/tests/read_norkyst.rs @@ -36,6 +36,7 @@ fn get_file() -> PathBuf { p } +#[ignore] #[test] fn coords() { let p = get_file(); @@ -52,6 +53,7 @@ fn coords() { assert_eq!(X, hX); } +#[ignore] #[test] fn wind() { let p = get_file(); @@ -78,6 +80,7 @@ fn wind() { assert_eq!(Vw, hVw); } +#[ignore] #[test] fn current() { let p = get_file(); @@ -109,6 +112,7 @@ fn current() { assert_eq!(v, hv); } +#[ignore] #[test] fn temperature_salinity() { let p = get_file(); @@ -133,6 +137,7 @@ fn temperature_salinity() { assert_eq!(Vw, hVw); } +#[ignore] #[test] fn chunk_slice_fracture() { let p = get_file();