We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e96240c commit b7d92cbCopy full SHA for b7d92cb
1 file changed
.github/workflows/lint_and_test.yml
@@ -35,5 +35,10 @@ jobs:
35
SAVE_VEILID_LOCAL_TEST_MODE: "1"
36
SAVE_VEILID_TEST_NETWORK_KEY: save-rust-ci-${{ github.run_id }}-${{ github.run_attempt }}
37
# Retries configured in .config/nextest.toml (nextest default path)
38
- # --no-fail-fast: run all tests even when some fail, so we see full results
39
- run: cargo nextest run --test-threads=1 --no-fail-fast
+ # --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.
40
+ run: >
41
+ cargo nextest run
42
+ --test-threads=1
43
+ --no-fail-fast
44
+ -E 'not (test(test_join_group) | test(test_replicate_group) | test(test_refresh_joined_group) | test(test_idempotent_create_repo_after_join))'
0 commit comments