Skip to content

Commit

Permalink
ignore expensive tests by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kralverde committed Nov 28, 2024
1 parent 2fc5ddd commit 487b3c1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pumpkin-world/src/world_gen/noise/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_final_density_samples() {
let expected_data: Vec<(i32, i32, i32, f64)> =
Expand All @@ -601,6 +602,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_sloped_cheese() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -623,6 +625,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_factor() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -644,6 +647,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_depth() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -665,6 +669,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_offset() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -686,6 +691,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_3d_overworld() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -708,6 +714,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_cave_entrances_overworld() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -730,6 +737,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_cave_spaghetti_rough_overworld() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -752,6 +760,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_cave_noodle() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -774,6 +783,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_cave_pillar() {
let mut rand = Xoroshiro::from_seed(0);
Expand All @@ -796,6 +806,7 @@ mod test {
}
}

#[ignore]
#[test]
fn test_converted_cave_spaghetti_2d_thickness() {
let mut rand = Xoroshiro::from_seed(0);
Expand Down
1 change: 1 addition & 0 deletions pumpkin-world/src/world_gen/noise/router.rs
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,7 @@ mod test {
assert_eq!(OVERWORLD_NOISE_ROUTER.vein_gap.sample(pos), 0f64);
}

#[ignore]
#[test]
fn test_converted_cave() {
let mut rand = Xoroshiro::from_seed(0);
Expand Down

0 comments on commit 487b3c1

Please sign in to comment.