diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-03-02 00:44:33 +0000 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-03-02 01:14:14 +0000 |
commit | 57e6e2279ee5562fe31eb418d9bcd8b80634ec8b (patch) | |
tree | 00adf6e70462d359f06768bd375001c201492c5d /.github | |
parent | 8da62a1041bfaf8ce4e40a4b31c7281cbe8bb916 (diff) |
ci: Fix functional tests step for pull requests in Windows GHA job
This functionality has been broken since the Windows runner image
version `20240128.1.0`.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2559e1012c..a86b00fdc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -289,4 +289,5 @@ jobs: - name: Run functional tests env: TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }} - run: py -3 test\functional\test_runner.py --jobs $env:NUMBER_OF_PROCESSORS --ci --quiet --tmpdirprefix=$env:RUNNER_TEMP --combinedlogslen=99999999 --timeout-factor=$env:TEST_RUNNER_TIMEOUT_FACTOR $env:TEST_RUNNER_EXTRA + shell: cmd + 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% %TEST_RUNNER_EXTRA% |