Skip render_asset_leak tests on ci test

This commit is contained in:
Lucas Farias 2025-05-24 16:19:46 -03:00
parent e9f000c031
commit dc2d1ccbdd

View File

@ -14,14 +14,25 @@ impl Prepare for TestCommand {
.then_some("--no-fail-fast")
.unwrap_or_default();
vec![PreparedCommand::new::<Self>(
cmd!(
sh,
// `--benches` runs each benchmark once in order to verify that they behave
// correctly and do not panic.
"cargo test --workspace --lib --bins --tests --benches {no_fail_fast}"
vec![
PreparedCommand::new::<Self>(
cmd!(
sh,
// `--benches` runs each benchmark once in order to verify that they behave
// correctly and do not panic.
"cargo test --workspace --lib --bins --benches {no_fail_fast}"
),
"Please fix failing tests in output above.",
),
"Please fix failing tests in output above.",
)]
PreparedCommand::new::<Self>(
cmd!(
sh,
// `--benches` runs each benchmark once in order to verify that they behave
// correctly and do not panic.
"cargo test --tests {no_fail_fast} -- --skip check_mesh --skip check_standard_material"
),
"Please fix failing tests in output above.",
),
]
}
}