Skip to content

Commit d44d6c9

Browse files
committed
fixup! test: use unusual chars in the path to ensure our tests are robust
1 parent f0e340e commit d44d6c9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test-linux.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ jobs:
4646
run: npx envinfo
4747
- name: Build
4848
run: make -C node build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
49-
- run: mv node 'dir%20with unusual chars åß∂ƒ©∆¬…'
5049
- name: Test
51-
run: make -C 'dir%20with unusual chars åß∂ƒ©∆¬…' run-ci -j2 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
50+
run: make -C node run-ci -j2 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
51+
- name: Re-run test in a folder whose name contains unusual chars
52+
run: |
53+
mv node 'dir%20with unusual chars åß∂ƒ©∆¬…'
54+
cd 'dir%20with unusual chars åß∂ƒ©∆¬…'
55+
./tools/test.py --flaky-tests keep_retrying -p actions -j 2

0 commit comments

Comments
 (0)