File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -242,11 +242,18 @@ jobs:
242
242
- uses : taiki-e/install-action@v2
243
243
with :
244
244
tool : nextest
245
- - name : More writes_through_symlinks_are_prevented_even_if_overwriting_is_allowed reps
245
+ - name : Increase writes_through_symlinks_are_prevented_even_if_overwriting_is_allowed reps
246
246
run : |
247
247
# Prepend leading digits "24" to the upper bound of the label range.
248
248
sed -Ei 's/^(#\[test_matrix\(0\.\.=)([[:digit:]]+\)])$/\124\2/' \
249
249
gix-worktree-state/tests/state/checkout.rs
250
+ - name : Modify the test code to use single-threaded checkout
251
+ run : |
252
+ # Replace the usual `thread_limit` argument with `Some(1)`.
253
+ sed -i 's/gix_features::parallel::num_threads(None).into()/Some(1)/' \
254
+ gix-worktree-state/tests/state/checkout.rs
255
+ - name : Display the changes made for this test
256
+ run : git diff
250
257
- name : Test writes_through_symlinks_are_prevented_even_if_overwriting_is_allowed (nextest)
251
258
run : |
252
259
cargo nextest run -p gix-worktree-state-tests --no-default-features \
You can’t perform that action at this time.
0 commit comments