Skip to content

Commit e33ed45

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3838
with:
3939
persist-credentials: false
40-
path: "dir%20with weird chars åß∂ƒ©∆¬…"
40+
path: "dir%20with unusual chars åß∂ƒ©∆¬…"
4141
- name: Set up Python ${{ env.PYTHON_VERSION }}
4242
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
4343
with:
4444
python-version: ${{ env.PYTHON_VERSION }}
4545
- name: Environment Information
4646
run: npx envinfo
4747
- name: Build
48-
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
48+
run: cd 'dir%20with unusual chars åß∂ƒ©∆¬…' && make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
4949
- name: Test
50-
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
50+
run: cd 'dir%20with unusual chars åß∂ƒ©∆¬…' && make run-ci -j2 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"

0 commit comments

Comments
 (0)