feat: add useful just commands

This commit is contained in:
Daniil Polyakov
2026-02-23 17:57:56 +03:00
parent 3855bf2399
commit e71f2fe16a
3 changed files with 47 additions and 4 deletions
+3 -1
View File
@@ -105,7 +105,9 @@ impl TestContext {
let mut compose = DockerCompose::with_auto_client(&[bedrock_compose_path])
.await
.context("Failed to setup docker compose for Bedrock")?;
.context("Failed to setup docker compose for Bedrock")?
// Setting port to 0 to avoid conflicts between parallel tests, actual port will be retrieved after container is up
.with_env("PORT", "0");
async fn up_and_retrieve_port(compose: &mut DockerCompose) -> Result<u16> {
compose