Skip render_asset_leak tests on ci test
This commit is contained in:
parent
e9f000c031
commit
dc2d1ccbdd
@ -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.",
|
||||
),
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user