mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Forward fabro-store/test-support through dependent test-support features
fabro-workflow's and fabro-server's src/test_support.rs import fabro_store::test_support, but their test-support features never enabled fabro-store/test-support. Workspace builds passed only through feature unification from other members' dev-dependencies, while per-crate builds such as `cargo check -p fabro-cli --tests` or `cargo check -p fabro-server --features test-support` failed with E0432. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
d65785d888
commit
eb54a8d0f8
2 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ description = "HTTP server for Fabro pipelines"
|
|||
doctest = false
|
||||
|
||||
[features]
|
||||
test-support = []
|
||||
test-support = ["fabro-store/test-support"]
|
||||
|
||||
[[test]]
|
||||
name = "it"
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ readme = "README.md"
|
|||
doctest = false
|
||||
|
||||
[features]
|
||||
test-support = ["fabro-auth/test-support"]
|
||||
test-support = ["fabro-auth/test-support", "fabro-store/test-support"]
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue