diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7f6effe..f404401 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4a10511..6501b12 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +pytest-xdist 3.3.0 (2023-05-12) +=============================== + +Features +-------- + +- `#555 `_: Improved progress output when collecting nodes to be less verbose. + + pytest-xdist 3.2.1 (2023-03-12) =============================== diff --git a/changelog/555.improvement.rst b/changelog/555.improvement.rst deleted file mode 100644 index f70ff53..0000000 --- a/changelog/555.improvement.rst +++ /dev/null @@ -1 +0,0 @@ -Improved progress output when collecting nodes to be less verbose. diff --git a/setup.cfg b/setup.cfg index 3162a90..77346ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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