fix: add missing dev-dependencies + fix test assertion
CI / CI (pull_request) Failing after 21m8s

- Added tracing, tracing-subscriber, reqwest, uuid to [dev-dependencies]
  (test files referenced these crates but they weren't available)
- Fixed test assertion: WikiLinkFallbackExtractor extracts [[Concurrency]]
  not 'Go' from text 'Go [[Concurrency]] is powerful'
This commit is contained in:
2026-09-15 13:57:58 +09:00
parent 3f83c1b015
commit b514c43d6b
3 changed files with 10 additions and 2 deletions
Generated
+4
View File
@@ -2599,11 +2599,15 @@ dependencies = [
"mem-llm", "mem-llm",
"mem-store", "mem-store",
"regex", "regex",
"reqwest",
"serde_json", "serde_json",
"sqlx", "sqlx",
"time", "time",
"tokio", "tokio",
"toml", "toml",
"tracing",
"tracing-subscriber",
"uuid",
"wiremock", "wiremock",
] ]
+4
View File
@@ -66,6 +66,10 @@ chrono = { version = "0.4", features = ["serde"] }
regex = { workspace = true } regex = { workspace = true }
sqlx = { workspace = true } sqlx = { workspace = true }
base64 = { workspace = true } base64 = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
reqwest = { workspace = true }
uuid = { workspace = true }
[profile.release] [profile.release]
opt-level = 3 opt-level = 3
+2 -2
View File
@@ -274,8 +274,8 @@ mod tests {
"Linux entity should be extracted from at least one record" "Linux entity should be extracted from at least one record"
); );
assert!( assert!(
all_extracted_entities.iter().any(|name| name.contains("Go") || name.contains("go")), all_extracted_entities.iter().any(|name| name.contains("Concurrency") || name.contains("concurrency")),
"Go entity should be extracted from at least one record" "Concurrency entity should be extracted from at least one record (via [[Concurrency]] wiki link)"
); );
} }