diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-11-03 16:00:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-03 23:00:18 +0800 |
commit | 0da4d89558a05fb86186253e778510cfd859caea (patch) | |
tree | 280287c8cae6908ae9bda4fef6f52033014c3171 | |
parent | 76643a1c0dcd78a99166fa69f837c0fa7331b6aa (diff) | |
download | rneovim-0da4d89558a05fb86186253e778510cfd859caea.tar.gz rneovim-0da4d89558a05fb86186253e778510cfd859caea.tar.bz2 rneovim-0da4d89558a05fb86186253e778510cfd859caea.zip |
ci: work around flaky python tests (#31063)
It's the same workaround as 88ed9ffcd1c022811ebc8818e153fe94e4741671,
which was later removed in f707ce76acb86e064d549dc762f5636af072d3c5
after it turned out to be stable after a while.
-rw-r--r-- | .github/workflows/test_windows.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/test_windows.yml b/.github/workflows/test_windows.yml index db7ad93f55..8829296756 100644 --- a/.github/workflows/test_windows.yml +++ b/.github/workflows/test_windows.yml @@ -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' |