Skip to content

Commit 5f43575

Browse files
authored
Merge pull request #966 from pytest-dev/release-3.4.0
Release 3.4.0
2 parents 230ba6a + a6b5611 commit 5f43575

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
- "py38-pytestlatest"
3939
- "py39-pytestlatest"
4040
- "py310-pytestlatest"
41-
- "py310-pytestmain"
4241
- "py311-pytestlatest"
4342
- "py311-pytestmain"
43+
- "py312-pytestlatest"
4444
- "py310-psutil"
4545
- "py310-setproctitle"
4646

@@ -54,12 +54,12 @@ jobs:
5454
python: "3.9"
5555
- tox_env: "py310-pytestlatest"
5656
python: "3.10"
57-
- tox_env: "py310-pytestmain"
58-
python: "3.10"
5957
- tox_env: "py311-pytestlatest"
6058
python: "3.11"
6159
- tox_env: "py311-pytestmain"
6260
python: "3.11"
61+
- tox_env: "py312-pytestlatest"
62+
python: "3.12"
6363
- tox_env: "py310-psutil"
6464
python: "3.10"
6565
- tox_env: "py310-setproctitle"

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
pytest-xdist 3.4.0 (2023-11-11)
2+
===============================
3+
4+
Features
5+
--------
6+
7+
- `#963 <https://github.com/pytest-dev/pytest-xdist/issues/963>`_: Wait for workers to finish reporting when test run stops early.
8+
9+
This makes sure that the results of in-progress tests are displayed.
10+
Previously these reports were being discarded, losing information about the
11+
test run.
12+
13+
- `#965 <https://github.com/pytest-dev/pytest-xdist/issues/965>`_: Added support for Python 3.12.
14+
15+
116
pytest-xdist 3.3.1 (2023-05-19)
217
===============================
318

changelog/963.improvement.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers =
3030
Programming Language :: Python :: 3.9
3131
Programming Language :: Python :: 3.10
3232
Programming Language :: Python :: 3.11
33+
Programming Language :: Python :: 3.12
3334
license_file = LICENSE
3435
project_urls =
3536
Documentation=https://pytest-xdist.readthedocs.io/en/latest

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
33
linting
4-
py{37,38,39,310,311}-pytestlatest
4+
py{37,38,39,310,311,312}-pytestlatest
55
py310-pytestmain
66
py310-psutil
77
py310-setproctitle

0 commit comments

Comments
 (0)