Stabilise runtime predicates #2630
coverage.yml
on: pull_request
tarpaulin-codecov
5m 40s
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(())
|
|