mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
ci: work around flaky python tests (#31063)
It's the same workaround as88ed9ffcd1
, which was later removed inf707ce76ac
after it turned out to be stable after a while.
This commit is contained in:
7
.github/workflows/test_windows.yml
vendored
7
.github/workflows/test_windows.yml
vendored
@ -31,6 +31,13 @@ jobs:
|
|||||||
cmake --preset ci -D CMAKE_BUILD_TYPE='RelWithDebInfo' ${{ inputs.build_flags }}
|
cmake --preset ci -D CMAKE_BUILD_TYPE='RelWithDebInfo' ${{ inputs.build_flags }}
|
||||||
cmake --build build
|
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
|
- name: Install test deps
|
||||||
run: |
|
run: |
|
||||||
$PSNativeCommandArgumentPassing = 'Legacy'
|
$PSNativeCommandArgumentPassing = 'Legacy'
|
||||||
|
Reference in New Issue
Block a user