Merge pull request #905 from pytest-dev/release-3.3.0

Release 3.3.0
This commit is contained in:
Bruno Oliveira
2023-05-12 17:48:57 -03:00
committed by GitHub
4 changed files with 25 additions and 2 deletions

View File

@@ -3,13 +3,27 @@ name: test
on:
push:
branches:
- "*"
- master
- "test-me-*"
pull_request:
branches:
- "*"
# Cancel running jobs for the same workflow and branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and Check Package
uses: hynek/build-and-inspect-python-package@v1.5
test:
runs-on: ${{ matrix.os }}

View File

@@ -1,3 +1,12 @@
pytest-xdist 3.3.0 (2023-05-12)
===============================
Features
--------
- `#555 <https://github.com/pytest-dev/pytest-xdist/issues/555>`_: Improved progress output when collecting nodes to be less verbose.
pytest-xdist 3.2.1 (2023-03-12)
===============================

View File

@@ -1 +0,0 @@
Improved progress output when collecting nodes to be less verbose.

View File

@@ -2,6 +2,7 @@
name = pytest-xdist
description = pytest xdist plugin for distributed testing, most importantly across multiple CPUs
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
author = holger krekel and contributors
author_email = pytest-dev@python.org,holger@merlinux.eu