Skip to content

Commit 4d230b6

Browse files
authored
Merge pull request #905 from pytest-dev/release-3.3.0
Release 3.3.0
2 parents 37b9dbd + f5b4a5d commit 4d230b6

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

.github/workflows/test.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,27 @@ name: test
33
on:
44
push:
55
branches:
6-
- "*"
6+
- master
7+
- "test-me-*"
78

89
pull_request:
910
branches:
1011
- "*"
1112

13+
# Cancel running jobs for the same workflow and branch.
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: true
17+
1218
jobs:
19+
20+
check-package:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v3
24+
- name: Build and Check Package
25+
uses: hynek/[email protected]
26+
1327
test:
1428

1529
runs-on: ${{ matrix.os }}

CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
pytest-xdist 3.3.0 (2023-05-12)
2+
===============================
3+
4+
Features
5+
--------
6+
7+
- `#555 <https://github.com/pytest-dev/pytest-xdist/issues/555>`_: Improved progress output when collecting nodes to be less verbose.
8+
9+
110
pytest-xdist 3.2.1 (2023-03-12)
211
===============================
312

changelog/555.improvement.rst

-1
This file was deleted.

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = pytest-xdist
33
description = pytest xdist plugin for distributed testing, most importantly across multiple CPUs
44
long_description = file: README.rst
5+
long_description_content_type = text/x-rst
56
license = MIT
67
author = holger krekel and contributors
78

0 commit comments

Comments
 (0)