Skip to content

Stabilise runtime predicates #2630

Stabilise runtime predicates

Stabilise runtime predicates #2630

Triggered via pull request October 8, 2024 14:41
Status Success
Total duration 5m 49s
Artifacts

coverage.yml

on: pull_request
tarpaulin-codecov
5m 40s
tarpaulin-codecov
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
unneeded `return` statement: e2e/job.rs#L46
warning: unneeded `return` statement --> e2e/job.rs:46:7 | 46 | Ok(()) | ^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 46 | OkOk(()) | ~~~~~~
unneeded `return` statement: e2e/boot.rs#L12
warning: unneeded `return` statement --> e2e/boot.rs:12:7 | 12 | Ok(()) | ^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 12 ~ Okfor p in pods.list(&Default::default()).await? { 13 + tracing::info!("Found pod {}", p.name_any()); 14 + } 15 + Ok(()) |