Xqt submitted this change.

View Change

Approvals: Xqt: Verified; Looks good to me, approved
[tests] ignore codecov-cli for Python 3.11 due to T365943

Bug: T365943
Change-Id: Ic777e1b62c0f6ced3bc35af0da9949ab802a0449
---
M .appveyor.yml
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.appveyor.yml b/.appveyor.yml
index 38cef84..322edde 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -97,5 +97,7 @@
- ps: |
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
coverage report
- - pip install codecov-cli
- - codecovcli do-upload
+
+ # ignore codecov-cli for Python 3.11 due to T365943
+ - if [%PYTHON_VERSION%]!=[3.11.x] pip install codecov-cli
+ - if [%PYTHON_VERSION%]!=[3.11.x] codecovcli do-upload

To view, visit change 1035894. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: Ic777e1b62c0f6ced3bc35af0da9949ab802a0449
Gerrit-Change-Number: 1035894
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Xqt <info@gno.de>
Gerrit-MessageType: merged