From 348283848fbd4a7cc6d2e557c07251a316055706 Mon Sep 17 00:00:00 2001 From: vincent Date: Tue, 17 Feb 2026 01:19:39 -0500 Subject: [PATCH] ci: limit save-rust PR tests to smoke subset --- .github/workflows/lint_and_test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint_and_test.yml b/.github/workflows/lint_and_test.yml index 477b528..1695e4e 100644 --- a/.github/workflows/lint_and_test.yml +++ b/.github/workflows/lint_and_test.yml @@ -35,9 +35,10 @@ jobs: SAVE_VEILID_LOCAL_TEST_MODE: "1" # Retries configured in .config/nextest.toml (nextest default path) # --no-fail-fast: run all tests in this PR subset even when some fail. - # Exclude long P2P network convergence tests from PR CI; run them in dedicated/nightly workflows. + # Keep PR CI focused on save-rust smoke coverage. + # Backend/P2P-heavy tests run in save-dweb-backend and/or dedicated workflows. run: > cargo nextest run --profile ci-virtual --no-fail-fast - -E 'not (test(test_join_group) | test(test_replicate_group) | test(test_refresh_joined_group) | test(test_idempotent_create_repo_after_join))' + -E 'test(basic_test) | test(test_health_endpoint) | test(test_upload_list_delete)'