Skip to content

Commit f70d239

Browse files
committed
Try to avoid parallel checkout in test-ext4-casefold
This attempts to turn off parallelism within individual runs of writes_through_symlinks_are_prevented_even_if_overwriting_is_allowed by passing `--no-default-features` to turn off the `gix-features-parallel` feature in `gix-worktree-state/Cargo.toml` (which is how `gix-features/parallel` is enabled in those tests). This is to check if the multithreading parallelism within the checkout operations participates in GitoxideLabs#2006. See: GitoxideLabs#2006 (comment)
1 parent 16171b4 commit f70d239

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
@@ -249,7 +249,7 @@ jobs:
249249
gix-worktree-state/tests/state/checkout.rs
250250
- name: Test writes_through_symlinks_are_prevented_even_if_overwriting_is_allowed (nextest)
251251
run: |
252-
cargo nextest run -p gix-worktree-state-tests \
252+
cargo nextest run -p gix-worktree-state-tests --no-default-features \
253253
writes_through_symlinks_are_prevented_even_if_overwriting_is_allowed \
254254
--status-level=fail --test-threads=${{ matrix.parallel-tests }}
255255

0 commit comments

Comments
 (0)