From 4a3f8e3a962b3e93cc5dd68fed5dc5e32bc972e6 Mon Sep 17 00:00:00 2001 From: aaltshuler Date: Thu, 11 Jun 2026 15:21:44 +0300 Subject: [PATCH] ci: point the RustFS server smoke at the renamed s3 test target The test-split renamed tests/server.rs away; the job now targets --test s3. Also fixes a stale name filter (s3_repo vs the actual s3_graph test): a substring filter matching nothing passes vacuously, so this step had been running zero tests. Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a77108f..2ed00d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -351,7 +351,10 @@ jobs: run: cargo test --locked -p omnigraph-engine --test s3_storage -- --nocapture - name: Run RustFS server smoke - run: cargo test --locked -p omnigraph-server --test server server_opens_s3_repo_directly_and_serves_snapshot_and_read -- --nocapture + # The exact test name (not a loose substring): a filter that matches + # nothing passes vacuously, which silently ran zero tests here for a + # while (the old filter said s3_repo; the test says s3_graph). + run: cargo test --locked -p omnigraph-server --test s3 server_opens_s3_graph_directly_and_serves_snapshot_and_read -- --nocapture - name: Run RustFS CLI smoke run: cargo test --locked -p omnigraph-cli --test system_local local_cli_s3_end_to_end_init_load_read_flow -- --nocapture