Update testcontainers requirement from 0.23.1 to 0.25.0 #179
Annotations
9 errors
|
Lints
Clippy has exited with exit code 101
|
|
variables can be used directly in the `format!` string:
src/mitaffald/mod.rs#L62
error: variables can be used directly in the `format!` string
--> src/mitaffald/mod.rs:62:24
|
62 | .map_err(|err| format!("Error connecting: {:?}", err))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
62 - .map_err(|err| format!("Error connecting: {:?}", err))
62 + .map_err(|err| format!("Error connecting: {err:?}"))
|
|
|
variables can be used directly in the `format!` string:
src/mitaffald/mod.rs#L21
error: variables can be used directly in the `format!` string
--> src/mitaffald/mod.rs:21:24
|
21 | .map_err(|err| format!("Error reading response content: {:?}", err))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
21 - .map_err(|err| format!("Error reading response content: {:?}", err))
21 + .map_err(|err| format!("Error reading response content: {err:?}"))
|
|
|
variables can be used directly in the `format!` string:
src/homeassistant/mod.rs#L145
error: variables can be used directly in the `format!` string
--> src/homeassistant/mod.rs:145:26
|
145 | state_topic: format!("garbage_bin/{}/status", container_id),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
145 - state_topic: format!("garbage_bin/{}/status", container_id),
145 + state_topic: format!("garbage_bin/{container_id}/status"),
|
|
|
variables can be used directly in the `format!` string:
src/homeassistant/mod.rs#L141
error: variables can be used directly in the `format!` string
--> src/homeassistant/mod.rs:141:30
|
141 | configure_topic: format!(
| ______________________________^
142 | | "homeassistant/sensor/ha_affaldvarme_{}/config",
143 | | container_id
144 | | ),
| |_____________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-D clippy::uninlined-format-args` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]`
|
|
ha-mitaffald::full_flow_insta ► smoke_test_insta:
target/nextest/ci/junit.xml#L0
Failed test found in:
target/nextest/ci/junit.xml
Error:
thread 'smoke_test_insta' panicked at tests/full_flow_insta.rs:28:10:
|
|
Test Suite
Failed test were found and 'fail-on-error' option is set to true
|
|
Test Suite
Process completed with exit code 100.
|
|
Code coverage
Process completed with exit code 1.
|