From f6bf30de3e9326893645c613cc11531098ebb52d Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Mon, 23 Feb 2026 10:57:26 -0500 Subject: [PATCH] Disable empty doc-tests and add terse test output alias Co-Authored-By: Claude Opus 4.6 --- .cargo/config.toml | 2 ++ crates/agent/Cargo.toml | 3 +++ crates/attractor/Cargo.toml | 3 +++ crates/llm/Cargo.toml | 3 +++ 4 files changed, 11 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 000000000..45f1c724a --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[alias] +t = "test -- --format terse" diff --git a/crates/agent/Cargo.toml b/crates/agent/Cargo.toml index a2e4858cd..e01fee42f 100644 --- a/crates/agent/Cargo.toml +++ b/crates/agent/Cargo.toml @@ -9,6 +9,9 @@ readme = "README.md" keywords = ["llm", "ai", "agent", "coding"] categories = ["api-bindings"] +[lib] +doctest = false + [dependencies] llm = { path = "../llm" } thiserror.workspace = true diff --git a/crates/attractor/Cargo.toml b/crates/attractor/Cargo.toml index 63afd5611..b98e07d09 100644 --- a/crates/attractor/Cargo.toml +++ b/crates/attractor/Cargo.toml @@ -9,6 +9,9 @@ keywords = ["llm", "ai", "pipeline", "workflow", "dot"] categories = ["development-tools"] readme = "README.md" +[lib] +doctest = false + [[bin]] name = "attractor" path = "src/main.rs" diff --git a/crates/llm/Cargo.toml b/crates/llm/Cargo.toml index cbf38072e..ead731610 100644 --- a/crates/llm/Cargo.toml +++ b/crates/llm/Cargo.toml @@ -9,6 +9,9 @@ readme = "README.md" keywords = ["llm", "ai", "openai", "anthropic"] categories = ["api-bindings"] +[lib] +doctest = false + [[bin]] name = "ullm" path = "src/bin/ullm.rs"