docs(testing): match lineage row to the asserted invariant; fix stale write_cost_s3 module doc

Greptile review on #324: the lineage_projection row said the legacy
datasets 'hold ZERO commit rows' but the test asserts the directories are
never created — a strictly stronger invariant; say that. And
write_cost_s3.rs's module doc still claimed it runs in the rustfs CI job,
contradicting the (correct) new table row — align it with reality (run on
demand, cost gate).
This commit is contained in:
aaltshuler 2026-07-03 12:43:23 +03:00 committed by Andrew Altshuler
parent 5c3125e7e1
commit 33d0134d2c
2 changed files with 5 additions and 2 deletions

View file

@ -23,7 +23,10 @@
//! opener flat, scan growing.)
//!
//! Skips gracefully without `OMNIGRAPH_S3_TEST_BUCKET` (the `tests/s3_storage.rs`
//! pattern); runs for real in the rustfs CI job (`.github/workflows/ci.yml`).
//! pattern). A cost (IO-count) gate, not a correctness test — run on demand
//! against RustFS/S3, NOT in the every-merge `rustfs_integration` CI job
//! (pulled out pending a dedicated cost/perf harness; see the backend-split
//! note in docs/dev/testing.md § Cost-budget tests).
#![recursion_limit = "512"]
mod helpers;