From 130b12ff3c49a97415247af79f02231f1b3ae458 Mon Sep 17 00:00:00 2001 From: bordumb Date: Mon, 9 Mar 2026 23:51:59 +0000 Subject: [PATCH] fix: correct insta snapshot filename and add --no-fail-fast to CI nextest The snapshot file must use the full module path from crate root (auths_cli__commands__status__tests__) not just the file-level module. Also adds --no-fail-fast to nextest in CI so all tests run regardless of early failures. --- .github/workflows/ci.yml | 2 +- ...ths_cli__commands__status__tests__status_json_snapshot.snap} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename crates/auths-cli/src/commands/snapshots/{status__tests__status_json_snapshot.snap => auths_cli__commands__status__tests__status_json_snapshot.snap} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e33f0b74..2045d2b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,7 +126,7 @@ jobs: git config --global user.email "ci@auths.dev" - name: Run tests - run: cargo nextest run --workspace --all-features + run: cargo nextest run --workspace --all-features --no-fail-fast - name: Run doc tests run: cargo test --all --doc diff --git a/crates/auths-cli/src/commands/snapshots/status__tests__status_json_snapshot.snap b/crates/auths-cli/src/commands/snapshots/auths_cli__commands__status__tests__status_json_snapshot.snap similarity index 100% rename from crates/auths-cli/src/commands/snapshots/status__tests__status_json_snapshot.snap rename to crates/auths-cli/src/commands/snapshots/auths_cli__commands__status__tests__status_json_snapshot.snap