We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2461302 + 3482838 commit e19dd13Copy full SHA for e19dd13
1 file changed
.github/workflows/lint_and_test.yml
@@ -35,9 +35,10 @@ jobs:
35
SAVE_VEILID_LOCAL_TEST_MODE: "1"
36
# Retries configured in .config/nextest.toml (nextest default path)
37
# --no-fail-fast: run all tests in this PR subset even when some fail.
38
- # Exclude long P2P network convergence tests from PR CI; run them in dedicated/nightly workflows.
+ # Keep PR CI focused on save-rust smoke coverage.
39
+ # Backend/P2P-heavy tests run in save-dweb-backend and/or dedicated workflows.
40
run: >
41
cargo nextest run
42
--profile ci-virtual
43
--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))'
44
+ -E 'test(basic_test) | test(test_health_endpoint) | test(test_upload_list_delete)'
0 commit comments