Xqt submitted this change.

View Change

Approvals: Xqt: Verified; Looks good to me, approved
[tests] Fix yml file for doctest

Change-Id: I1c0b6ab791926cd7b9aaa79b26d79d5f03fc6817
---
M .github/workflows/doctest.yml
1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/doctest.yml b/.github/workflows/doctest.yml
index 04c3d9a..064b565 100644
--- a/.github/workflows/doctest.yml
+++ b/.github/workflows/doctest.yml
@@ -21,16 +21,19 @@

strategy:
fail-fast: false
- max-parallel: 7
+ max-parallel: 14

matrix:
- os: [windows-latest, macOS-latest, ubuntu-latest]
- python-version: [pypy3.7, pypy3.10, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12. 3.13]
+ os: [ windows-latest, macOS-latest, ubuntu-latest ]
+ python-version: [ "pypy3.7", "pypy3.10", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
include:
- - python-version: 3.14-dev
+ - python-version: "3.13-dev"
+ - python-version: "3.14-dev"
exclude:
- os: macOS-latest
- python-version: [pypy3.7, 3.7]
+ python-version: "pypy3.7"
+ - os: macOS-latest
+ python-version: "3.7"

steps:
- name: Checkout Repository
@@ -40,7 +43,7 @@

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
- if: "!endsWith(matrix.python-version, '-dev')
+ if: "!endsWith(matrix.python-version, '-dev')"
with:
python-version: ${{ matrix.python-version }}


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

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