Skip to content

Commit da87bec

Browse files
committed
When a doctest fails, run further doctests
Instead of stopping running doctests even in other packages. This change only applies to the `test-fast` job on CI. It does not affect any default configuration for doctests, nor the `justfile`. The reason for making this change before fixing the remaining doctest failure (which is in `gix-pack/src/index/mod.rs`) is to confirm that it takes effect on CI.
1 parent 2fdbcfe commit da87bec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
GIX_TEST_CREATE_ARCHIVES_EVEN_ON_CI: 1
7777
run: cargo nextest run --workspace --no-fail-fast
7878
- name: Doctest
79-
run: cargo test --workspace --doc
79+
run: cargo test --workspace --doc --no-fail-fast
8080
- name: Check that tracked archives are up to date
8181
run: git diff --exit-code # If this fails, the fix is usually to commit a regenerated archive.
8282

0 commit comments

Comments
 (0)