ci: work around flaky python tests (#31063)

It's the same workaround as 88ed9ffcd1,
which was later removed in f707ce76ac
after it turned out to be stable after a while.
This commit is contained in:
dundargoc 2024-11-03 16:00:18 +01:00 committed by GitHub
parent 76643a1c0d
commit 0da4d89558
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,6 +31,13 @@ jobs:
cmake --preset ci -D CMAKE_BUILD_TYPE='RelWithDebInfo' ${{ inputs.build_flags }}
cmake --build build
# FIXME(dundargoc): this workaround is needed as the python3 provider
# tests suddenly started to become extremely flaky, and this removes the
# flakiness for some reason.
- uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install test deps
run: |
$PSNativeCommandArgumentPassing = 'Legacy'