Skip to content

Commit

Permalink
tests: ignore slow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gauteh committed Aug 16, 2023
1 parent 0315dc3 commit adfed4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion benches/large.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
5 changes: 5 additions & 0 deletions tests/read_norkyst.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ fn get_file() -> PathBuf {
p
}

#[ignore]
#[test]
fn coords() {
let p = get_file();
Expand All @@ -52,6 +53,7 @@ fn coords() {
assert_eq!(X, hX);
}

#[ignore]
#[test]
fn wind() {
let p = get_file();
Expand All @@ -78,6 +80,7 @@ fn wind() {
assert_eq!(Vw, hVw);
}

#[ignore]
#[test]
fn current() {
let p = get_file();
Expand Down Expand Up @@ -109,6 +112,7 @@ fn current() {
assert_eq!(v, hv);
}

#[ignore]
#[test]
fn temperature_salinity() {
let p = get_file();
Expand All @@ -133,6 +137,7 @@ fn temperature_salinity() {
assert_eq!(Vw, hVw);
}

#[ignore]
#[test]
fn chunk_slice_fracture() {
let p = get_file();
Expand Down

0 comments on commit adfed4b

Please sign in to comment.