Skip to content

Commit 9d2b085

Browse files
authored
Merge pull request #242 from pytest-dev/update-ci
Add python 3.14 and pytest 8.4 to the matrix
2 parents b95b655 + 7bb61a9 commit 9d2b085

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,18 @@ jobs:
5454
toxfactor: py3.13
5555
ignore-typecheck-outcome: true
5656
ignore-test-outcome: false
57+
- python-version: "3.14"
58+
toxfactor: py3.14
59+
ignore-typecheck-outcome: true
60+
ignore-test-outcome: false
5761
steps:
5862
- uses: actions/checkout@v4
5963
- name: Set up Python ${{ matrix.python-version }}
60-
uses: actions/setup-python@v4
64+
uses: actions/setup-python@v5
6165
id: setup-python
6266
with:
6367
python-version: ${{ matrix.python-version }}
68+
allow-prereleases: true
6469
- name: Install poetry
6570
run: |
6671
python -m pip install poetry==2.0.0

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
distshare = {homedir}/.tox/distshare
3-
envlist = py{3.9,3.10,3.11,3.12,3.13}-pytest{7.3,7.4,8.0,8.1,8.2,8.3,latest,main}
3+
envlist = py{3.9,3.10,3.11,3.12,3.13,3.14}-pytest{7.3,7.4,8.0,8.1,8.2,8.3,8.4,latest,main}
44
py{3.9,3.10,3.11}-pytest{7.0,7.1,7.2}
55
mypy
66

@@ -12,6 +12,7 @@ ignore_outcome =
1212
deps =
1313
pytestlatest: pytest
1414
pytestmain: git+https://github.com/pytest-dev/pytest.git@main
15+
pytest8.4: pytest~=8.4.0
1516
pytest8.3: pytest~=8.3.0
1617
pytest8.2: pytest~=8.2.0
1718
pytest8.1: pytest~=8.1.0

0 commit comments

Comments
 (0)