diff --git a/backend/Justfile b/backend/Justfile index f0e1683..090be26 100644 --- a/backend/Justfile +++ b/backend/Justfile @@ -14,6 +14,7 @@ default := 'run' watch CMD=default: watchexec -w src -r just {{CMD}} +alias check:=lint lint *ARGS: - cargo clippy -- -Dwarnings -Dclippy::correctness -Wclippy::pedantic -Wclippy::perf -Aclippy::missing_errors_doc -Aclippy::missing_panics_doc {{ARGS}} + cargo clippy --all-targets -- -Dwarnings -Dclippy::correctness -Wclippy::pedantic -Wclippy::perf -Aclippy::missing_errors_doc -Aclippy::missing_panics_doc {{ARGS}} diff --git a/backend/tests/healthcheck.rs b/backend/tests/healthcheck.rs index c9d8132..ea79fdb 100644 --- a/backend/tests/healthcheck.rs +++ b/backend/tests/healthcheck.rs @@ -3,7 +3,7 @@ use std::{sync::LazyLock, time::Duration}; use http::StatusCode; use reqwest::Client; -static client: LazyLock = LazyLock::new(|| { +static CLIENT: LazyLock = LazyLock::new(|| { Client::builder() .timeout(Duration::from_secs(10)) .connect_timeout(Duration::from_secs(5)) @@ -13,7 +13,7 @@ static client: LazyLock = LazyLock::new(|| { #[tokio::test] async fn test_healthcheck_returns_healthy() { - let resp = client + let resp = CLIENT .get("http://localhost:7001/healthcheck") .send() .await