16
.github/workflows/test.yml
vendored
16
.github/workflows/test.yml
vendored
@@ -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 }}
|
||||
|
||||
@@ -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)
|
||||
===============================
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
Improved progress output when collecting nodes to be less verbose.
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user