We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0e340e commit d44d6c9Copy full SHA for d44d6c9
.github/workflows/test-linux.yml
@@ -46,6 +46,10 @@ jobs:
46
run: npx envinfo
47
- name: Build
48
run: make -C node build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
49
- - run: mv node 'dir%20with unusual chars åß∂ƒ©∆¬…'
50
- name: Test
51
- run: make -C 'dir%20with unusual chars åß∂ƒ©∆¬…' run-ci -j2 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
+ run: make -C node run-ci -j2 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
+ - 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