Skip to content

Commit 4d17e83

Browse files
committed
another fix
1 parent a296fb8 commit 4d17e83

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ jobs:
266266
env:
267267
BITCOINFUZZ: '${{ github.workspace }}\build\bin\Release\fuzz.exe'
268268
run: |
269-
py -3 test\fuzz\test_runner.py --par $NUMBER_OF_PROCESSORS --loglevel DEBUG "${RUNNER_TEMP}\qa-assets\fuzz_corpora"
269+
py -3 test\\fuzz\\test_runner.py --par $NUMBER_OF_PROCESSORS --loglevel DEBUG "${RUNNER_TEMP}\qa-assets\fuzz_corpora"
270270
271271
windows-cross:
272272
name: 'Linux->Windows cross, no tests'
@@ -362,18 +362,17 @@ jobs:
362362
Get-Content "test\config.ini"
363363
364364
- name: Run util tests
365-
run: py -3 test\util\test_runner.py
365+
run: py -3 test\\util\\test_runner.py
366366

367367
- name: Run rpcauth test
368-
run: py -3 test\util\rpcauth-test.py
368+
run: py -3 test\\util\\rpcauth-test.py
369369

370370
- name: Run functional tests
371371
env:
372372
# TODO: Fix the excluded tests and re-enable them.
373373
EXCLUDE: '--exclude wallet_migration.py,wallet_multiwallet.py'
374374
TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }}
375-
shell: cmd
376-
run: py -3 test\functional\test_runner.py --jobs %NUMBER_OF_PROCESSORS% --ci --quiet --tmpdirprefix=%RUNNER_TEMP% --combinedlogslen=99999999 --timeout-factor=%TEST_RUNNER_TIMEOUT_FACTOR% %EXCLUDE% %TEST_RUNNER_EXTRA%
375+
run: py -3 test\\functional\\test_runner.py --jobs $NUMBER_OF_PROCESSORS --ci --quiet --tmpdirprefix="$RUNNER_TEMP" --combinedlogslen=99999999 --timeout-factor=$TEST_RUNNER_TIMEOUT_FACTOR $EXCLUDE $TEST_RUNNER_EXTRA
377376

378377
asan-lsan-ubsan-integer-no-depends-usdt:
379378
name: 'ASan + LSan + UBSan + integer, no depends, USDT'

0 commit comments

Comments
 (0)